aboutsummaryrefslogtreecommitdiff
path: root/internal/imports/imports_test.go
blob: 6405ab57d0c50c12a2c154e7b0becf8370f1bfcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package imports

import (
	"os"
	"testing"

	"golang.org/x/tools/internal/testenv"
)

func TestMain(m *testing.M) {
	testenv.ExitIfSmallMachine()
	os.Exit(m.Run())
}