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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkSimpleFilterWatcherTest.cxx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
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.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <iostream>
#include "itkSimpleFilterWatcher.h"
#include "itkInvertIntensityImageFilter.h"
#include "itkImage.h"
int itkSimpleFilterWatcherTest (int, char*[])
{
// Test out the code
typedef itk::SimpleFilterWatcher WatcherType;
typedef itk::Image<char,3> ImageType;
typedef itk::InvertIntensityImageFilter<
ImageType, ImageType> FilterType;
FilterType::Pointer filter = FilterType::New();
const char * comment = "comment";
// Test constructor that takes a ProcessObject.
WatcherType watcher1( filter, comment );
// Test copy constructor.
WatcherType watcher2( watcher1 );
if ( watcher1.GetNameOfClass() != watcher2.GetNameOfClass()
|| watcher1.GetProcess() != watcher2.GetProcess()
|| watcher1.GetSteps() != watcher2.GetSteps()
|| watcher1.GetIterations() != watcher2.GetIterations()
|| watcher1.GetQuiet() != watcher2.GetQuiet()
|| watcher1.GetComment() != watcher2.GetComment() )
//|| watcher1.GetTimeProbe() != watcher2.GetTimeProbe() )
{
std::cout << "Copy constructor failed." << std::endl;
return EXIT_FAILURE;
}
// Test default constructor.
WatcherType watcher3;
// Test assignment operator.
watcher3 = watcher2;
if ( watcher3.GetNameOfClass() != watcher2.GetNameOfClass()
|| watcher3.GetProcess() != watcher2.GetProcess()
|| watcher3.GetSteps() != watcher2.GetSteps()
|| watcher3.GetIterations() != watcher2.GetIterations()
|| watcher3.GetQuiet() != watcher2.GetQuiet()
|| watcher3.GetComment() != watcher2.GetComment() )
//|| watcher3.GetTimeProbe() != watcher2.GetTimeProbe() )
{
std::cout << "Operator= failed." << std::endl;
return EXIT_FAILURE;
}
// Test GetNameOfClass().
std::string name = watcher3.GetNameOfClass();
if ( name != filter->GetNameOfClass() )
{
std::cout << "GetNameOfClass failed. Expected: "
<< filter->GetNameOfClass()
<< " but got: "
<< watcher3.GetNameOfClass() << std::endl;
return EXIT_FAILURE;
}
// Test Quiet functions.
watcher3.QuietOff();
watcher3.QuietOn();
watcher3.SetQuiet( false );
if ( watcher3.GetQuiet() != false )
{
std::cout << "GetQuiet() failed." << std::endl;
return EXIT_FAILURE;
}
// Test comment.
if ( watcher3.GetComment() != comment )
{
std::cout << "GetComment() failed." << std::endl;
return EXIT_FAILURE;
}
// Check Pointer
if ( watcher3.GetProcess() != filter )
{
std::cout << "GetProcess() failed." << std::endl;
return EXIT_FAILURE;
}
// Return success.
std::cout << "SimpleFilterWatcher test PASSED ! " << std::endl;
return EXIT_SUCCESS;
}
|