(self)
| 18 | assert res._total_size == error._total_size |
| 19 | |
| 20 | def test_str(self): |
| 21 | e = _ArrayMemoryError((1023,), np.dtype(np.uint8)) |
| 22 | str(e) # not crashing is enough |
| 23 | |
| 24 | # testing these properties is easier than testing the full string repr |
| 25 | def test__size_to_string(self): |
nothing calls this directly
no test coverage detected