(self)
| 590 | return array, disk_array |
| 591 | |
| 592 | def test_read_entire_array(self): |
| 593 | array, disk_array = self.create_array() |
| 594 | out_buffer = np.empty((self.size,), "f8") |
| 595 | disk_array.read(out=out_buffer) |
| 596 | np.testing.assert_equal(out_buffer, array) |
| 597 | |
| 598 | def test_read_contiguous_slice1(self): |
| 599 | array, disk_array = self.create_array() |
nothing calls this directly
no test coverage detected