(self)
| 4541 | |
| 4542 | class AccessClosedTestCase(common.TempFileMixin, common.PyTablesTestCase): |
| 4543 | def setUp(self): |
| 4544 | super().setUp() |
| 4545 | self.array = self.h5file.create_vlarray( |
| 4546 | self.h5file.root, "array", atom=tb.StringAtom(8) |
| 4547 | ) |
| 4548 | self.array.append([str(i) for i in range(5, 5005, 100)]) |
| 4549 | |
| 4550 | def test_read(self): |
| 4551 | self.h5file.close() |
nothing calls this directly
no test coverage detected