summaryrefslogtreecommitdiff
path: root/include/cppunit/extensions/RepeatedTest.h
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-07-15 03:18:06 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-07-15 03:18:06 +0000
commit08b4a5c444044db09dc5c668390e9f40663210ff (patch)
treef94c3f33864a238e3edc29c6fc92ebff748e82fa /include/cppunit/extensions/RepeatedTest.h
parent8cdfc19f2213bf1de4aee4bc5e799af49b6608d0 (diff)
downloadcppunit-08b4a5c444044db09dc5c668390e9f40663210ff.tar.gz
Added documentation.
Diffstat (limited to 'include/cppunit/extensions/RepeatedTest.h')
-rw-r--r--include/cppunit/extensions/RepeatedTest.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/cppunit/extensions/RepeatedTest.h b/include/cppunit/extensions/RepeatedTest.h
index 7a68e88..b28deeb 100644
--- a/include/cppunit/extensions/RepeatedTest.h
+++ b/include/cppunit/extensions/RepeatedTest.h
@@ -9,10 +9,9 @@ class Test;
class TestResult;
-/*
- * A decorator that runs a test repeatedly.
- * Does not assume ownership of the test it decorates
+/*! \brief Decorator that runs a test repeatedly.
*
+ * Does not assume ownership of the test it decorates
*/
class RepeatedTest : public TestDecorator
{
@@ -22,9 +21,9 @@ public:
TestDecorator( test ),
m_timesRepeat(timesRepeat) {}
+ void run( TestResult *result );
int countTestCases();
std::string toString();
- void run( TestResult *result );
private:
RepeatedTest( const RepeatedTest & );