1
0
mirror of https://github.com/pocoproject/poco.git synced 2025-04-03 18:10:15 +02:00
poco/CppUnit/src/TestDecorator.cpp
Günter Obiltschnig b9cc21867b fix warnings
2020-01-04 09:58:23 +01:00

42 lines
440 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)
{
_test->run(result);
}
std::string TestDecorator::toString() const
{
return _test->toString();
}
} // namespace CppUnit