Test the use of constructor arguments.
(self)
| 76 | self.assertEqual(o.GetClassName(), "vtkCustomObject") |
| 77 | |
| 78 | def testConstructorArgs(self): |
| 79 | """Test the use of constructor arguments.""" |
| 80 | extra = vtkObject() |
| 81 | o = vtkCustomObject(extra) |
| 82 | self.assertEqual(o.GetClassName(), "vtkCustomObject") |
| 83 | self.assertEqual(id(o.GetExtraObject()), id(extra)) |
| 84 | |
| 85 | def testCallUnboundMethods(self): |
| 86 | """Test calling an unbound method in an overridden method""" |
nothing calls this directly
no test coverage detected