my-emacs-d/elpa/yasnippet-20160924.2001/snippets/go-mode/testmain

21 lines
234 B
Plaintext

# -*- mode: snippet -*-
# name: testmain
# key: testmain
# contributor : @atotto
# --
func TestMain(m *testing.M) {
setup()
ret := m.Run()
if ret == 0 {
teardown()
}
os.Exit(ret)
}
func setup() {
$1
}
func teardown() {
$2
}