1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
vtk_add_test_cxx(${vtk-module}CxxTests tests
NO_DATA NO_VALID NO_OUTPUT
TestColor.cxx
TestVector.cxx
TestVectorOperators.cxx
TestAMRBox.cxx
TestBiQuadraticQuad.cxx
TestCompositeDataSets.cxx
TestDataArrayDispatcher.cxx
TestDataObject.cxx
TestDispatchers.cxx
TestGenericCell.cxx
TestGraph.cxx
TestGraph2.cxx
TestGraphAttributes.cxx
TestHigherOrderCell.cxx
TestImageDataFindCell.cxx
TestImageDataInterpolation.cxx
TestImageIterator.cxx
TestInterpolationDerivs.cxx
TestInterpolationFunctions.cxx
TestPath.cxx
TestPentagonalPrism.cxx
TestPixelExtent.cxx
TestPointLocators.cxx
TestPolyDataRemoveCell.cxx
TestPolygon.cxx
TestPolyhedron0.cxx
TestPolyhedron1.cxx
TestQuadraticPolygon.cxx
TestSelectionSubtract.cxx
TestTable.cxx
TestTreeBFSIterator.cxx
TestTreeDFSIterator.cxx
TestTriangle.cxx
otherCellArray.cxx
otherCellBoundaries.cxx
otherCellPosition.cxx
otherCellTypes.cxx
otherColorTransferFunction.cxx
otherEmptyCell.cxx
otherFieldData.cxx
otherRectilinearGrid.cxx
otherStructuredGrid.cxx
quadCellConsistency.cxx
quadraticEvaluation.cxx
TestBoundingBox.cxx
TestPlane.cxx
TestStructuredData.cxx
TestDataObjectTypes.cxx
TestPolyDataRemoveDeletedCells.cxx
UnitTestCells.cxx
)
vtk_add_test_cxx(${vtk-module}CxxTests data_tests
TestCellIterators.cxx,NO_VALID,NO_OUTPUT
TestCellLocator.cxx,NO_DATA
TestMeanValueCoordinatesInterpolation1.cxx
TestMeanValueCoordinatesInterpolation2.cxx
TestSmoothErrorMetric.cxx
TestQuadraticPolygonFilters.cxx
)
vtk_add_test_cxx(${vtk-module}CxxTests output_tests
TestKdTreeRepresentation.cxx,NO_DATA
)
set(all_tests
${tests}
${data_tests}
${output_tests}
)
vtk_test_cxx_executable(${vtk-module}CxxTests all_tests)
|