0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-15 04:47:16 +03:00

Test: Remove temporary directory afterwards (#4045)

This commit is contained in:
zonescape
2024-11-25 07:00:00 +03:00
committed by GitHub
parent 034a485afe
commit ce8c415d43
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package scenarios
import (
"testing"
)
func TestMain(m *testing.M) {
genTestBinaryPath()
defer testBinaryCleanFn()
m.Run()
}