Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package tests |
||
2 | |||
3 | import ( |
||
4 | "os" |
||
5 | "testing" |
||
6 | ) |
||
7 | |||
8 | func TestMain(m *testing.M) { |
||
9 | setup() |
||
10 | code := m.Run() |
||
11 | os.Exit(code) |
||
12 | } |
||
13 |