| 10 | #include "vtkNew.h" |
| 11 | |
| 12 | int otherHyperTreeGrid(int, char*[]) |
| 13 | { |
| 14 | vtkNew<vtkHyperTreeGrid> htg; |
| 15 | if (htg->SupportsGhostArray(vtkDataObject::POINT) || |
| 16 | !htg->SupportsGhostArray(vtkDataObject::CELL)) |
| 17 | { |
| 18 | vtkLog(ERROR, "Unexpected results on SupportsGhostArray"); |
| 19 | return EXIT_FAILURE; |
| 20 | } |
| 21 | return EXIT_SUCCESS; |
| 22 | } |
nothing calls this directly
no test coverage detected