shad-go/fileleak/fileleak.go
2022-03-15 23:49:56 +03:00

12 lines
182 B
Go

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