shad-go/fileleak/fileleak.go

13 lines
182 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2021-03-12 16:47:54 +00:00
package fileleak
type testingT interface {
Errorf(msg string, args ...interface{})
Cleanup(func())
}
func VerifyNone(t testingT) {
panic("implement me")
2022-02-10 22:06:57 +00:00
}