github.com/llvm-mirror/llgo@v0.0.0-20190322182713-bf6f0a60fce1/third_party/gotools/go/ssa/interp/testdata/b_test.go (about)

     1  package b
     2  
     3  import "testing"
     4  
     5  func NotATest(t *testing.T) {
     6  	t.Error("foo")
     7  }
     8  
     9  func NotABenchmark(b *testing.B) {
    10  	b.Error("wiz")
    11  }