(self)
| 290 | ) |
| 291 | |
| 292 | def setUp(self): |
| 293 | super().setUp() |
| 294 | self.table = self.h5file.create_table( |
| 295 | "/", "test", self.tableDescription, expectedrows=self.nrows |
| 296 | ) |
| 297 | fill_table(self.table, self.shape, self.nrows) |
| 298 | |
| 299 | |
| 300 | class ScalarTableMixin: |
nothing calls this directly
no test coverage detected