12345678910111213141516171819202122232425262728293031 |
- package common // import "github.com/docker/docker/integration/plugin/common"
- import (
- "fmt"
- "os"
- "testing"
- "github.com/docker/docker/pkg/reexec"
- "github.com/docker/docker/testutil/environment"
- )
- var testEnv *environment.Execution
- func TestMain(m *testing.M) {
- if reexec.Init() {
- return
- }
- var err error
- testEnv, err = environment.New()
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- testEnv.Print()
- os.Exit(m.Run())
- }
- func setupTest(t *testing.T) func() {
- environment.ProtectAll(t, testEnv)
- return func() { testEnv.Clean(t) }
- }
|