(self)
| 14 | print('foo') |
| 15 | |
| 16 | def testConstruction(self): |
| 17 | g = dm.vtkCellGrid() |
| 18 | self.assertEqual(g.GetNumberOfCells(), 0) |
| 19 | self.assertEqual(g.GetShapeAttribute(), None) |
| 20 | bds = [0, 0, 0, 0, 0, 0] |
| 21 | g.GetBounds(bds) |
| 22 | self.assertEqual(bds, [1., -1., 1., -1., 1., -1.]) |
| 23 | |
| 24 | def testReader(self): |
| 25 | r = io.vtkCellGridReader() |
nothing calls this directly
no test coverage detected