Test array CreateArray
(self)
| 124 | self.assertEqual(value, result) |
| 125 | |
| 126 | def testArray(self): |
| 127 | """Test array CreateArray""" |
| 128 | o = vtkArray.CreateArray(vtkArray.DENSE, VTK_DOUBLE) |
| 129 | self.assertEqual(o.__class__, vtkDenseArray[float]) |
| 130 | |
| 131 | def testVector(self): |
| 132 | """Test vector templates""" |
nothing calls this directly
no test coverage detected