(self)
| 65 | self.assertEqual(int(pd.GetArray("StagnationEnergy").GetValue(3)), 1) |
| 66 | |
| 67 | def testMetaReader(self): |
| 68 | r = vtkPlot3DMetaReader() |
| 69 | r.SetFileName(VTK_DATA_ROOT + "/Data/multi.p3d") |
| 70 | r.Update() |
| 71 | self.assertTrue(r.GetOutput().GetBlock(0).GetPointData().GetArray("Function0")) |
| 72 | |
| 73 | if __name__ == "__main__": |
| 74 | Testing.main([(TestPlot3D, 'test')]) |
nothing calls this directly
no test coverage detected