volcano.sh/volcano@v1.9.0/pkg/scheduler/cache/main_test.go (about)

     1  package cache
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  
     7  	"volcano.sh/volcano/cmd/scheduler/app/options"
     8  )
     9  
    10  func TestMain(m *testing.M) {
    11  	options.Default()
    12  	os.Exit(m.Run())
    13  }