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