aboutsummaryrefslogtreecommitdiff
path: root/template/go/snip-test-case.go
blob: ee7629355a5ca40d94efd1fb87e6ca61ea703cc4 (plain)
1
2
3
4
5
6
7
func Test{{_cursor_}}(t *testing.T) {
	got := 1
	want := 2
	if got != want {
		t.Fatalf("want %v, but %v:", want, got)
	}
}