13 lines
182 B
Go
13 lines
182 B
Go
|
// +build !solution
|
||
|
|
||
|
package fileleak
|
||
|
|
||
|
type testingT interface {
|
||
|
Errorf(msg string, args ...interface{})
|
||
|
Cleanup(func())
|
||
|
}
|
||
|
|
||
|
func VerifyNone(t testingT) {
|
||
|
panic("implement me")
|
||
|
}
|