Assert checks `value` and `expect` EQUAL.
(value, expect any)
| 17 | |
| 18 | // Assert checks `value` and `expect` EQUAL. |
| 19 | func (t *T) Assert(value, expect any) { |
| 20 | Assert(value, expect) |
| 21 | } |
| 22 | |
| 23 | // AssertEQ checks `value` and `expect` EQUAL, including their TYPES. |
| 24 | func (t *T) AssertEQ(value, expect any) { |