#include "mitkSegmentationInterpolationController.h"
#include "mitkCoreObjectFactory.h"
#include "mitkStandardFileLocations.h"
#include "mitkDataNodeFactory.h"
#include "ipSegmentation.h"
#include "mitkCompareImageSliceTestHelper.h"
Go to the source code of this file.
Classes | |
class | mitkSegmentationInterpolationTestClass |
Functions | |
int | mitkSegmentationInterpolationTest (int, char *[]) |
ctest entry point |
int mitkSegmentationInterpolationTest | ( | int | , |
char * | [] | ||
) |
ctest entry point
Definition at line 348 of file mitkSegmentationInterpolationTest.cpp.
References EXIT_FAILURE, EXIT_SUCCESS, and mitkSegmentationInterpolationTestClass::Test().
{ // one big variable to tell if anything went wrong std::cout << "Creating CoreObjectFactory" << std::endl; itk::ObjectFactoryBase::RegisterFactory(mitk::CoreObjectFactory::New()); mitkSegmentationInterpolationTestClass test; if ( test.Test() ) { std::cout << "[PASSED]" << std::endl; return EXIT_SUCCESS; } else { std::cout << "[FAILED]" << std::endl; return EXIT_FAILURE; } }