21 lines
234 B
Plaintext
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
|
||
|
}
|