Passed
Push — master ( 510e0f...ad64d3 )
by Serhii
02:43 queued 01:09
created

tests.TestMain   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
nop 1
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