Default constructor
(self)
| 41 | |
| 42 | class TestVariant(Testing.vtkTest): |
| 43 | def testDefaultConstructor(self): |
| 44 | """Default constructor""" |
| 45 | v = vtkVariant() |
| 46 | self.assertEqual(v.IsValid(), False) |
| 47 | self.assertEqual(v.GetType(), 0) |
| 48 | |
| 49 | def testCopyConstructor(self): |
| 50 | """Construct from another vtkVariant""" |
nothing calls this directly
no test coverage detected