(self)
| 1328 | return array, disk_array |
| 1329 | |
| 1330 | def test_read_entire_array(self): |
| 1331 | array, disk_array = self.create_array() |
| 1332 | out_buffer = np.empty((self.size,), "i8") |
| 1333 | disk_array.read(out=out_buffer) |
| 1334 | np.testing.assert_equal(out_buffer, array) |
| 1335 | |
| 1336 | def test_read_non_contiguous_buffer(self): |
| 1337 | array, disk_array = self.create_array() |
nothing calls this directly
no test coverage detected