| 1548 | struct TestDataObjectsImpl |
| 1549 | { |
| 1550 | static bool Execute(DataObjectT* do1, DataObjectT* do2, double toleranceFactor) |
| 1551 | { |
| 1552 | if (!TestFieldData(do1->GetFieldData(), do2->GetFieldData(), |
| 1553 | IdentityMapper(do1->GetFieldData()->GetNumberOfTuples()), toleranceFactor, true) || |
| 1554 | !TestPoints(do1, do2, toleranceFactor) || |
| 1555 | !CellsTester<DataObjectT>::Execute(do1, do2, toleranceFactor)) |
| 1556 | { |
| 1557 | vtkLog( |
| 1558 | ERROR, "Failed to match the 2 input data objects of type " << do1->GetClassName() << "."); |
| 1559 | return false; |
| 1560 | } |
| 1561 | return true; |
| 1562 | } |
| 1563 | }; |
| 1564 | |
| 1565 | //============================================================================ |
nothing calls this directly
no test coverage detected