You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkRegressionTestImage.h,v $
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/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 notice for more information.
|
|
|
|
=========================================================================*/
|
|
#ifndef __vtkRegressionTestImage_h
|
|
#define __vtkRegressionTestImage_h
|
|
|
|
// Includes and a macro necessary for saving the image produced by a cxx
|
|
// example program. This capability is critical for regression testing.
|
|
// This function returns 1 if test passed, 0 if test failed.
|
|
|
|
#include "vtkTesting.h"
|
|
|
|
class vtkRegressionTester : public vtkTesting
|
|
{
|
|
protected:
|
|
vtkRegressionTester() {};
|
|
~vtkRegressionTester() {};
|
|
private:
|
|
vtkRegressionTester(const vtkRegressionTester&); // Not implemented.
|
|
void operator=(const vtkRegressionTester&); // Not implemented.
|
|
};
|
|
|
|
#define vtkRegressionTestImage(rw) \
|
|
vtkTesting::Test(argc, argv, rw, 10)
|
|
|
|
#define vtkRegressionTestImageThreshold(rw, t) \
|
|
vtkTesting::Test(argc, argv, rw, t)
|
|
|
|
#endif // __vtkRegressionTestImage_h
|
|
|