mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 21:15:50 +00: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()
|
||
|
|
}
|