1package urequire 2 3import "testing" 4 5func TestPackage(t *testing.T) { 6 Equal(t, 42, 42) 7 8 // XXX: find a way to unit test this package thoroughly, 9 // especially the t.FailNow() behavior on assertion failure. 10}