mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-03 10:01:24 +02:00
51 lines
731 B
C++
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
|