summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
blob: 162a590c62f5942dc298cc490bc74457c352f832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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")
}