package main import ( "testing" ) func TestTruthy(t *testing.T) { if true != true { t.Fatalf("truthy not truthy") } }