mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06: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")
|
|
}
|