(self)
| 1187 | filters = tb.Filters(complevel=4) # simply non-default |
| 1188 | |
| 1189 | def setUp(self): |
| 1190 | super().setUp() |
| 1191 | self.h5file.create_array("/", "array", [1]) |
| 1192 | self.h5file.create_group("/", "group", filters=self.filters) |
| 1193 | |
| 1194 | def test01_inside(self): |
| 1195 | """Placing a node inside a nonexistent child of itself.""" |
nothing calls this directly
no test coverage detected