aboutsummaryrefslogtreecommitdiff
path: root/template/go/base-test.go
blob: 4bdf104de1150919c381aaa80dd0eb4f38c00674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package {{_name_:main_test}}

import (
	"testing"
)

func TestSimple(t *testing.T) {
	got := 1
	want := 2
	if got != want {
		t.Fatalf("want %v, but %v:", want, got)
	}
}
{{_filter_:test}}