aboutsummaryrefslogtreecommitdiff
path: root/template/go/snip-test-table-driven.go
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2020-01-28 00:06:10 +0900
committerGitHub <noreply@github.com>2020-01-28 00:06:10 +0900
commitec4b09feb065fe3b60af4e6e3de8d034ac08ac41 (patch)
tree11d41269dd60e4fdfdef71c948eb93be282571c3 /template/go/snip-test-table-driven.go
parentac26968d9e3957718192c4b32721e1c386dfb14f (diff)
parent7fc55ca2e5d11ffe399751519ae4dd24bf1fdb9e (diff)
downloadvim-sonictemplate-ec4b09feb065fe3b60af4e6e3de8d034ac08ac41.tar.gz
vim-sonictemplate-ec4b09feb065fe3b60af4e6e3de8d034ac08ac41.tar.bz2
vim-sonictemplate-ec4b09feb065fe3b60af4e6e3de8d034ac08ac41.zip
Merge pull request #40 from hiroakis/feature/go
Add some snippet to go
Diffstat (limited to 'template/go/snip-test-table-driven.go')
-rw-r--r--template/go/snip-test-table-driven.go19
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)
+ }
+ })
+ }
+}