(self)
| 2824 | class AccessClosedTestCase(common.TempFileMixin, common.PyTablesTestCase): |
| 2825 | |
| 2826 | def setUp(self): |
| 2827 | super().setUp() |
| 2828 | self.array = self.h5file.create_earray( |
| 2829 | self.h5file.root, "array", atom=tb.Int32Atom(), shape=(0, 10) |
| 2830 | ) |
| 2831 | self.array.append(np.zeros((10, 10))) |
| 2832 | |
| 2833 | def test_read(self): |
| 2834 | self.h5file.close() |
nothing calls this directly
no test coverage detected