T requires a subset of methods from testing.TB. This interface is primarily useful to simplify the testing of the package itself.
| 13 | // This interface is primarily useful to simplify the testing of the |
| 14 | // package itself. |
| 15 | type T interface { |
| 16 | Helper() |
| 17 | Error(args ...any) |
| 18 | Errorf(format string, args ...any) |
| 19 | FailNow() |
| 20 | } |
| 21 | |
| 22 | // AssertMatrixEquals tests whether expected is equal to actual; if not, |
| 23 | // T.Error or T.Errorf are called, providing useful information. |
no outgoing calls
no test coverage detected