urequire_test.gno

0.21 Kb ยท 10 lines
 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}