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