type T interface {
// Failed returns if the test has failed or not, see// [testing.T.Failed].
Failed() bool// Fatal is a wrapper around [testing.T.Fatal]. Fatal(args ...interface{})
// Cleanup is a wrapper around [testing.T.Cleanup]. Cleanup(func())
}