10 lines
108 B
Go
10 lines
108 B
Go
//go:build system_test
|
|
|
|
package systemtests
|
|
|
|
import "testing"
|
|
|
|
func TestMain(m *testing.M) {
|
|
RunTests(m)
|
|
}
|