poco/CppUnit/src/TestDecorator.cpp
haorui wang a41d802ccd
fix(CppUint) : RepeatedTest compile error (#3759)
* chore(CppUnit) : style format and revise comment

fix(CppUnit) : RepeatedTest compile error

* chore(CppUnit) : remove TestResult forward declare in RepeatedTest.h
2022-08-18 11:37:35 -05:00

42 lines
472 B
C++

//
// TestDecorator.cpp
//
#include "CppUnit/TestDecorator.h"
namespace CppUnit {
TestDecorator::TestDecorator(Test* test)
{
_test = test;
}
TestDecorator::~TestDecorator()
{
}
int TestDecorator::countTestCases() const
{
return _test->countTestCases();
}
void TestDecorator::run(TestResult* result, const Test::Callback& callback)
{
_test->run(result);
}
std::string TestDecorator::toString() const
{
return _test->toString();
}
} // namespace CppUnit