1# Matches no tests 2go test -run ThisWillNotMatch standalone_test.go 3stdout '^ok.*\[no tests to run\]' 4 5-- standalone_test.go -- 6package standalone_test 7 8import "testing" 9 10func Test(t *testing.T) { 11}
View as plain text