package {{_name_}}_test import ( "testing" ) func TestSimple(t *testing.T) { value := 1 expected := 2 if value != expected { t.Fatalf("Expected %v, but %d:", value, expected) } } {{_filter_:test}}