diff options
author | Steve M. Robbins <smr@sumost.ca> | 2001-09-30 16:21:56 +0000 |
---|---|---|
committer | Steve M. Robbins <smr@sumost.ca> | 2001-09-30 16:21:56 +0000 |
commit | 32fff17f6f0ec18f0deba13fed5c261b8913fd66 (patch) | |
tree | 50f7a1777ef7faf2830a216592d9ddfb0b7b9ccf /include/cppunit/extensions/RepeatedTest.h | |
parent | c4d97b4d586fdae21a02aff7a02605ffd487b188 (diff) | |
download | cppunit-32fff17f6f0ec18f0deba13fed5c261b8913fd66.tar.gz |
Distribute contrib/msvc/*.
Add const qualifier to countTestCases() and toString() of RepeatedTest.
Diffstat (limited to 'include/cppunit/extensions/RepeatedTest.h')
-rw-r--r-- | include/cppunit/extensions/RepeatedTest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cppunit/extensions/RepeatedTest.h b/include/cppunit/extensions/RepeatedTest.h index b28deeb..e27b53e 100644 --- a/include/cppunit/extensions/RepeatedTest.h +++ b/include/cppunit/extensions/RepeatedTest.h @@ -22,8 +22,8 @@ public: m_timesRepeat(timesRepeat) {} void run( TestResult *result ); - int countTestCases(); - std::string toString(); + int countTestCases() const; + std::string toString() const; private: RepeatedTest( const RepeatedTest & ); |