MCPcopy Create free account
hub / github.com/PyTables/PyTables / setUp

Method setUp

tables/tests/test_vlarray.py:4543–4548  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

4541
4542class 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()

Callers

nothing calls this directly

Calls 3

create_vlarrayMethod · 0.80
setUpMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected