(self)
| 2633 | open_mode = "a" |
| 2634 | |
| 2635 | def setUp(self): |
| 2636 | super().setUp() |
| 2637 | |
| 2638 | # Create an EArray |
| 2639 | ea = self.h5file.create_earray( |
| 2640 | "/", "test", atom=tb.Int32Atom(), shape=(3, 0) |
| 2641 | ) |
| 2642 | # Append a single row |
| 2643 | ea.append([[1], [2], [3]]) |
| 2644 | |
| 2645 | def test01_canAppend(self): |
| 2646 | """Appending zero length array.""" |
nothing calls this directly
no test coverage detected