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

tests/utils_test.go   A

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 8
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A tests.TestMain 0 4 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