#include <testcase.hh>
Public Member Functions | |
TestCase (ostream *osptr=0) | |
virtual void | run ()=0 |
Runs the tests. Must be overwritten by the specialization. | |
long | getNumPassed () const |
Returns number of passed tests. | |
long | getNumFailed () const |
Returns number of failed tests. | |
const ostream * | getStream () const |
Returns output stream. | |
void | setStream (ostream *osptr) |
Sets the output stream. | |
void | _succeed () |
Explicitly succeds a test. | |
long | report () const |
virtual void | reset () |
Resets the counters for the failed and passed tests. | |
Protected Member Functions | |
bool | do_test (bool cond, const string &lbl, const char *fname, long lineno) |
Internal function to do a test. | |
bool | do_numtest (double num, double orig, const string &lbl, const string &lbl2, const char *fname, long lineno, const double tol=1e-10) |
Internal function to do a numerical test. | |
bool | do_numtest (std::complex< double > num, std::complex< double > orig, const string &lbl, const string &lbl2, const char *fname, long lineno, const double tol=1e-10) |
void | do_fail (const string &lbl, const char *fname, long lineno) |
Base class for tests. Writing a test case is done by deriving from this class.
Definition at line 92 of file testcase.hh.
|
inline |
Constructor.
osptr | Pointer to the output stream. Defaults to stdout. |
Definition at line 147 of file testcase.hh.
|
inlinevirtual |
Definition at line 98 of file testcase.hh.
|
inline |
Explicitly succeds a test.
Definition at line 112 of file testcase.hh.
|
protected |
Internal function to report a failed test (besides increasing the failed counter)
|
inline |
Returns number of failed tests.
Definition at line 105 of file testcase.hh.
|
inline |
Returns number of passed tests.
Definition at line 103 of file testcase.hh.
|
inline |
Returns output stream.
Definition at line 107 of file testcase.hh.
long test::TestCase::report | ( | ) | const |
Prints a report on the number of passed and failed tests to the output stream.
|
inlinevirtual |
Resets the counters for the failed and passed tests.
Definition at line 119 of file testcase.hh.
|
pure virtual |
Runs the tests. Must be overwritten by the specialization.
Implemented in test::ExceptionTest, test::PointTest, test::MappingTest, test::StackTest, test::ToTest, test::BEMSpaceTest, test::ArPackppTest, test::ArPackTest, test::ConstrainedEVP, test::DirPowItTest, test::SmallESTest, test::BesselTest, test::ElementFormulaTest, test::FormulaTest, test::VectorTest, test::DeadLock1, test::ConvertMeshQuads, test::MeshImp2DTest, test::MeshImp2DTestFail, test::TestBlending, test::TestEdgeMaps2D, test::TestDiameter, test::EdgeMeshTest, test::FrmfElmFrmTest, test::InfiniteMesh2dTest, test::TestJacobian2D, test::Quad2dTest, test::TestMatrices1D, test::TestDualSpace1D, test::TestIntegrals1D, test::TestLegendre1D, test::TestLinearForm1D, test::CellConditionTest, test::Cloneing, test::DirichletTest, test::EdgeTest, test::ExtremaTest, test::Formula2DTest, test::FunctionEvaluation, test::H1extensionTest, test::hpAdaptiveSpaceDGTest, test::hpFullTest2D, test::IntegralTest, test::LinearFormTest, test::TestMatrices2D, test::ProjectionTest, test::SpaceH1Test, test::SpaceL2DGTest, test::SpaceL2Test, test::SpaceTest2D, test::GridInfoTest, test::SpaceH1onInfMeshTest, test::MixedNonContTest, test::NeumannTraceTest, test::TraceTest, test::TraceSpaceL2Test, test::hp2DedgeAdvectionTest, test::BilinearFormTest, test::BoundariesTest, test::hpAdaptiveSpaceDG_HCurl_Test, test::LinearFormTest, test::TraceTest, test::DeadLock2, test::DeadLock3, test::FunctionEvaluation3d, test::TestMatrices3D, test::SpaceTest3D, test::TraceSpaceTest3D, test::QuadratureTest, test::KarniadakisTest, test::LaguerreTest, test::LegendreTest, test::LevelRieszTest, test::DGEdgeInfoTest, test::DGElementPair2dTest, test::DGTriangleP1Test, test::DGSpace2dP1Test, test::MatfileIOTest, test::Eddy2DRingTest, test::BiCgStabTest, test::CgTest, test::CompositionsTest, test::MoreCompositionsTest, test::DeepCompositionsTest, test::DomainDecomp, test::LapackTest, test::MumpsTest, test::mumpsTestFail, test::PardisoTest, test::SparseMatrixTest, test::SuperLUTest, test::UmfpackTest, test::DomainDecompTest, test::ElementFormulaTest, test::ElementFunctionTest, test::IndexRangeTest, test::RestrictionSpaceTest, test::DriverTest, and test::RCPTest.
|
inline |
Sets the output stream.
Definition at line 109 of file testcase.hh.