diff --git a/Modules/ImageStatistics/Testing/files.cmake b/Modules/ImageStatistics/Testing/files.cmake index cfd9adbaca..68b62b28ea 100644 --- a/Modules/ImageStatistics/Testing/files.cmake +++ b/Modules/ImageStatistics/Testing/files.cmake @@ -1,3 +1,4 @@ -SET(MODULE_TESTS +SET(MODULE_TESTS mitkImageStatisticsCalculatorTest.cpp -) + mitkPointSetStatisticsCalculatorTest.cpp +) \ No newline at end of file diff --git a/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp b/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp new file mode 100644 index 0000000000..c7b3e6fa84 --- /dev/null +++ b/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp @@ -0,0 +1,41 @@ +/*========================================================================= + +Program: Medical Imaging & Interaction Toolkit +Language: C++ +Date: $Date: 2008-02-25 17:27:17 +0100 (Mo, 25 Feb 2008) $ +Version: $Revision: 7837 $ + +Copyright (c) German Cancer Research Center, Division of Medical and +Biological Informatics. All rights reserved. +See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. + +This software is distributed WITHOUT ANY WARRANTY; without even +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + +#include "mitkStandardFileLocations.h" +#include "mitkTestingMacros.h" +#include "mitkPointSetStatisticsCalculator.h" + +//#include + +/** + * \brief Test class for mitkPointSetStatisticsCalculator + */ +class mitkPointSetStatisticsCalculatorTestClass +{ + +public: + + +}; + +int mitkPointSetStatisticsCalculatorTest(int argc, char* argv[]) +{ + // always start with this! + MITK_TEST_BEGIN("mitkPointSetStatisticsCalculatorTest") + + MITK_TEST_END() +}