1 package xunit_tests 2 3 import ( 4 "testing" 5 ) 6 7 func TestAlwaysTrue(t *testing.T) { 8 if AlwaysTrue() != true { 9 t.Errorf("Expected true, got false") 10 } 11 } 12
View as plain text