mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
fix warnings
This commit is contained in:
parent
24c7d4ab97
commit
b9cc21867b
@ -33,11 +33,11 @@ public:
|
||||
|
||||
virtual ~TestDecorator();
|
||||
|
||||
int countTestCases();
|
||||
int countTestCases() const;
|
||||
|
||||
void run(TestResult* result);
|
||||
|
||||
std::string toString();
|
||||
std::string toString() const;
|
||||
|
||||
protected:
|
||||
Test* _test;
|
||||
|
@ -20,7 +20,7 @@ TestDecorator::~TestDecorator()
|
||||
}
|
||||
|
||||
|
||||
int TestDecorator::countTestCases()
|
||||
int TestDecorator::countTestCases() const
|
||||
{
|
||||
return _test->countTestCases();
|
||||
}
|
||||
@ -29,10 +29,10 @@ int TestDecorator::countTestCases()
|
||||
void TestDecorator::run(TestResult* result)
|
||||
{
|
||||
_test->run(result);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
std::string TestDecorator::toString()
|
||||
std::string TestDecorator::toString() const
|
||||
{
|
||||
return _test->toString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user