mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 20:59:19 +02:00
13 lines
132 B
Go
13 lines
132 B
Go
package scenarios
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
genTestBinaryPath()
|
|
defer testBinaryCleanFn()
|
|
|
|
m.Run()
|
|
}
|