Check the hinted vtkDirectory methods
(self)
| 35 | self.assertEqual(w.GetFileName(), str(pathobj)) |
| 36 | |
| 37 | def testtDirectory(self): |
| 38 | """Check the hinted vtkDirectory methods |
| 39 | """ |
| 40 | d = vtkDirectory() |
| 41 | # This will raise an exception if Path isn't accepted |
| 42 | d.Open(Path(VTK_TEMP_DIR)) |
| 43 | |
| 44 | if __name__ == "__main__": |
| 45 | Testing.main([(TestFilePath, 'test')]) |
nothing calls this directly
no test coverage detected