mirror of
https://github.com/grafana/grafana.git
synced 2026-08-04 18:43:10 -05:00
16 lines
283 B
Go
16 lines
283 B
Go
package assert
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLineNumbers(t *testing.T) {
|
|
Equal(t, "foo", "foo", "msg!")
|
|
//Equal(t, "foo", "bar", "this should blow up")
|
|
}
|
|
|
|
func TestNotEqual(t *testing.T) {
|
|
NotEqual(t, "foo", "bar", "msg!")
|
|
//NotEqual(t, "foo", "foo", "this should blow up")
|
|
}
|