(self)
| 149 | self.check_roundtrips(a) |
| 150 | |
| 151 | def test_array_object(self): |
| 152 | a = np.array([], object) |
| 153 | self.check_roundtrips(a) |
| 154 | |
| 155 | a = np.array([[1, 2], [3, 4]], object) |
| 156 | self.check_roundtrips(a) |
| 157 | |
| 158 | def test_1D(self): |
| 159 | a = np.array([1, 2, 3, 4], int) |
nothing calls this directly
no test coverage detected