(self)
| 1773 | """Test case for setting index filters.""" |
| 1774 | |
| 1775 | def setUp(self): |
| 1776 | super().setUp() |
| 1777 | description = {"icol": tb.IntCol()} |
| 1778 | self.table = self.h5file.create_table("/", "test", description) |
| 1779 | |
| 1780 | def test_createIndex(self): |
| 1781 | """Checking input parameters in new indexes.""" |
nothing calls this directly
no test coverage detected