poco/CppUnit/include/CppUnit/TestDecorator.h
2024-05-08 13:25:56 +02:00

51 lines
731 B
C++

//
// TestDecorator.h
//
#ifndef CppUnit_TestDecorator_INCLUDED
#define CppUnit_TestDecorator_INCLUDED
#include "CppUnit/CppUnit.h"
#include "CppUnit/Guards.h"
#include "CppUnit/Test.h"
namespace CppUnit {
class TestResult;
/*
* A Decorator for Tests
*
* Does not assume ownership of the test it decorates
*
*/
class CppUnit_API TestDecorator: public Test
{
REFERENCEOBJECT(TestDecorator)
public:
TestDecorator(Test* test);
~TestDecorator() override;
int countTestCases() const override;
void run(TestResult* result, const Test::Callback& callback = nullptr) override;
std::string toString() const override;
protected:
Test* _test;
};
} // namespace CppUnit
#endif // CppUnit_TestDecorator_INCLUDED