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

     1  # The intent here is to verify that 'go test -n' works without crashing.
     2  # Any test will do.
     3  
     4  go test -n x_test.go
     5  
     6  -- x_test.go --
     7  package x_test
     8  
     9  import (
    10  	"testing"
    11  )
    12  
    13  func TestEmpty(t *testing.T) {
    14  }