Xray-core/testing/scenarios/main_test.go

13 lines
132 B
Go
Raw Normal View History

package scenarios
import (
"testing"
)
func TestMain(m *testing.M) {
genTestBinaryPath()
defer testBinaryCleanFn()
m.Run()
}