github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/go/ssa/interp/testdata/a_test.go (about)

     1  package a
     2  
     3  import "testing"
     4  
     5  func TestFoo(t *testing.T) {
     6  	t.Error("foo")
     7  }
     8  
     9  func TestBar(t *testing.T) {
    10  	t.Error("bar")
    11  }
    12  
    13  func BenchmarkWiz(b *testing.B) {
    14  	b.Error("wiz")
    15  }
    16  
    17  // Don't test Examples since that testing package needs pipe(2) for that.