Data integrity during recovery (character objects)
(self)
| 256 | Path(filename).unlink() |
| 257 | |
| 258 | def setup00_char(self): |
| 259 | """Data integrity during recovery (character objects)""" |
| 260 | |
| 261 | if not isinstance(self.tupleChar, np.ndarray): |
| 262 | a = np.array(self.tupleChar, dtype="S") |
| 263 | else: |
| 264 | a = self.tupleChar |
| 265 | |
| 266 | return a |
| 267 | |
| 268 | def test00_char(self): |
| 269 | a = self.setup00_char() |
no outgoing calls
no test coverage detected