(self)
| 158 | self.check_roundtrips(a) |
| 159 | |
| 160 | def test_array_object(self): |
| 161 | a = np.array([], object) |
| 162 | self.check_roundtrips(a) |
| 163 | |
| 164 | a = np.array([[1, 2], [3, 4]], object) |
| 165 | self.check_roundtrips(a) |
| 166 | |
| 167 | def test_1D(self): |
| 168 | a = np.array([1, 2, 3, 4], int) |
nothing calls this directly
no test coverage detected