| 123456789101112131415 |
- 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")
- }
|