(t *testing.T)
| 13 | const runProjectTests = "DEVBOX_RUN_PROJECT_TESTS" |
| 14 | |
| 15 | func TestScripts(t *testing.T) { |
| 16 | // To run a specific test, say, testscripts/foo/bar.test.text, then run |
| 17 | // go test ./testscripts -run TestScripts/bar |
| 18 | testrunner.RunTestscripts(t, ".") |
| 19 | } |
| 20 | |
| 21 | func TestMain(m *testing.M) { |
| 22 | testrunner.Main(m) |
nothing calls this directly
no test coverage detected