Creating soft links.
(self)
| 110 | self.assertIsNotNone(larr2) |
| 111 | |
| 112 | def test00_create(self): |
| 113 | """Creating soft links.""" |
| 114 | |
| 115 | self._checkEqualityGroup( |
| 116 | self.h5file.root.group1, self.h5file.root.lgroup1() |
| 117 | ) |
| 118 | self._checkEqualityLeaf( |
| 119 | self.h5file.root.arr1, self.h5file.root.group1.larr1() |
| 120 | ) |
| 121 | self._checkEqualityLeaf( |
| 122 | self.h5file.root.lgroup1().arr2, self.h5file.root.larr2() |
| 123 | ) |
| 124 | |
| 125 | def test01_open(self): |
| 126 | """Opening a file with soft links.""" |
nothing calls this directly
no test coverage detected