(self)
| 745 | nrows = 10 |
| 746 | |
| 747 | def setUp(self): |
| 748 | super().setUp() |
| 749 | |
| 750 | # Create a temporary file |
| 751 | self.h5fname2 = tempfile.mktemp(".h5") |
| 752 | |
| 753 | # Create the destination |
| 754 | self.h5file2 = tb.open_file(self.h5fname2, "w") |
| 755 | self.populateFile() |
| 756 | |
| 757 | def populateFile(self): |
| 758 | group = self.h5file.root |
nothing calls this directly
no test coverage detected