diff options
Diffstat (limited to 'template/go/snip-test-table-driven.go')
-rw-r--r-- | template/go/snip-test-table-driven.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/template/go/snip-test-table-driven.go b/template/go/snip-test-table-driven.go new file mode 100644 index 0000000..f98786d --- /dev/null +++ b/template/go/snip-test-table-driven.go @@ -0,0 +1,19 @@ +func Test{{_cursor_}}(t *testing.T) { + tests := []struct{ + name string + want int + }{ + { + name: "case1", + want: 1, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T){ + got := 1 + if got != tt.want { + t.Fatalf("want %v, but %v:", tt.want, got) + } + }) + } +} |