diff options
Diffstat (limited to 'src/cppunit/RepeatedTest.cpp')
| -rw-r--r-- | src/cppunit/RepeatedTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppunit/RepeatedTest.cpp b/src/cppunit/RepeatedTest.cpp index 10f99d0..bfe1f72 100644 --- a/src/cppunit/RepeatedTest.cpp +++ b/src/cppunit/RepeatedTest.cpp @@ -7,7 +7,7 @@ namespace CppUnit { // Counts the number of test cases that will be run by this test. int -RepeatedTest::countTestCases() +RepeatedTest::countTestCases() const { return TestDecorator::countTestCases () * m_timesRepeat; } @@ -15,7 +15,7 @@ RepeatedTest::countTestCases() // Returns the name of the test instance. std::string -RepeatedTest::toString() +RepeatedTest::toString() const { return TestDecorator::toString () + " (repeated)"; } |
