main_test.go 132 B

123456789101112
  1. package scenarios
  2. import (
  3. "testing"
  4. )
  5. func TestMain(m *testing.M) {
  6. genTestBinaryPath()
  7. defer testBinaryCleanFn()
  8. m.Run()
  9. }