(self)
| 1434 | ) |
| 1435 | class ThreadingTestCase(common.TempFileMixin, common.PyTablesTestCase): |
| 1436 | def setUp(self): |
| 1437 | super().setUp() |
| 1438 | self.h5file.create_carray( |
| 1439 | "/", "test_array", tb.Int64Atom(), (200, 300) |
| 1440 | ) |
| 1441 | self.h5file.close() |
| 1442 | |
| 1443 | def test(self): |
| 1444 | lock = threading.Lock() |
nothing calls this directly
no test coverage detected