(self)
| 6702 | self.populateFile() |
| 6703 | |
| 6704 | def populateFile(self): |
| 6705 | # Create a table |
| 6706 | table = self.h5file.create_table( |
| 6707 | self.h5file.root, "table", self.record, title="__length__ test" |
| 6708 | ) |
| 6709 | # Get the row object associated with the new table |
| 6710 | row = table.row |
| 6711 | |
| 6712 | # Fill the table |
| 6713 | for i in range(self.nrows): |
| 6714 | row.append() |
| 6715 | |
| 6716 | # Flush the buffer for this table |
| 6717 | table.flush() |
| 6718 | self.table = table |
| 6719 | |
| 6720 | def test01_lengthrows(self): |
| 6721 | """Checking __length__ in Table.""" |
no test coverage detected