main_test.go 151 B

12345678910
  1. package daemon // import "github.com/docker/docker/integration/daemon"
  2. import (
  3. "os"
  4. "testing"
  5. )
  6. func TestMain(m *testing.M) {
  7. os.Exit(m.Run())
  8. }