summaryrefslogtreecommitdiff
path: root/src/cppunit/RepeatedTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/RepeatedTest.cpp')
-rw-r--r--src/cppunit/RepeatedTest.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/cppunit/RepeatedTest.cpp b/src/cppunit/RepeatedTest.cpp
index bfe1f72..58b1805 100644
--- a/src/cppunit/RepeatedTest.cpp
+++ b/src/cppunit/RepeatedTest.cpp
@@ -9,17 +9,10 @@ namespace CppUnit {
int
RepeatedTest::countTestCases() const
{
- return TestDecorator::countTestCases () * m_timesRepeat;
+ return TestDecorator::countTestCases() * m_timesRepeat;
}
-// Returns the name of the test instance.
-std::string
-RepeatedTest::toString() const
-{
- return TestDecorator::toString () + " (repeated)";
-}
-
// Runs a repeated test
void
RepeatedTest::run( TestResult *result )