github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/test_no_tests.txt (about)

     1  # Tests issue #26242
     2  
     3  go test testnorun
     4  stdout 'testnorun\t\[no test files\]'
     5  
     6  -- testnorun/p.go --
     7  package p
     8  
     9  func init() {
    10  	panic("go test must not link and run test binaries without tests")
    11  }