shad-go/fileleak/fileleak.go
2022-02-10 22:06:57 +00:00

13 lines
202 B
Go

//go:build !solution
// +build !solution
package fileleak
type testingT interface {
Errorf(msg string, args ...interface{})
Cleanup(func())
}
func VerifyNone(t testingT) {
panic("implement me")
}