/*========================================================================= Project: MaskedSpatialObjectToImageFilter Program: Insight Segmentation & Registration Toolkit Module: MaskedSpatialObjectToImageTestDriver.cxx Language: C++ Date: 2006/07/19 Version: 1.0 Copyright (c) Queensland University of Technology (QUT) 2006. All rights reserved. Portions of this code are covered under the ITK and VTK copyright. See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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. =========================================================================*/ //This file is the test driver for the MaskedSpatialObjectToImageFilter project. //It is responsible for registering all test methods. #if defined(_MSC_VER) #pragma warning ( disable : 4786 ) #endif #include #include "itkTestMain.h" void RegisterTests() { //Register test methods REGISTER_TEST(itkMaskedSpatialObjectToImageFilterTest); REGISTER_TEST(itkSpatialObjectToImageFilterTest); }