1 package ci
2 3 // Tester is an interface type that can be implemented by *testing.T. This
4 // allows drivers to call into the non-test API using their own test contexts.
5 type Tester interface {
6 Error(...interface{})
7 Errorf(string, ...interface{})
8 Fail()
9 FailNow()
10 Failed() bool
11 Fatal(...interface{})
12 Fatalf(string, ...interface{})
13 Log(...interface{})
14 Logf(string, ...interface{})
15 Parallel()
16 Skip(...interface{})
17 SkipNow()
18 Skipf(string, ...interface{})
19 Skipped() bool
20 }
21