Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(507)

Unified Diff: src/core/test/watchdog-test-suite.cc

Issue 318360043: Final updates to correct doxygen warnings for the core module (Closed)
Patch Set: Additional doxygen corrections Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/test/type-traits-test-suite.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/test/watchdog-test-suite.cc
===================================================================
--- a/src/core/test/watchdog-test-suite.cc
+++ b/src/core/test/watchdog-test-suite.cc
@@ -22,15 +22,25 @@
using namespace ns3;
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Watchdog test
+ */
class WatchdogTestCase : public TestCase
{
public:
WatchdogTestCase ();
virtual void DoRun (void);
+ /**
+ * Expire test function
+ * \param expected the expected time
+ */
void Expire (Time expected);
- bool m_expired;
- Time m_expiredTime;
- Time m_expiredArgument;
+ bool m_expired; ///< expired indicator
+ Time m_expiredTime; ///< expired time
+ Time m_expiredArgument; ///< expired argument
};
WatchdogTestCase::WatchdogTestCase()
@@ -67,7 +77,12 @@
}
-
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Watchdog test suite
+ */
static class WatchdogTestSuite : public TestSuite
{
public:
@@ -76,4 +91,4 @@
{
AddTestCase (new WatchdogTestCase (), TestCase::QUICK);
}
-} g_watchdogTestSuite;
+} g_watchdogTestSuite; ///< the test suite
« no previous file with comments | « src/core/test/type-traits-test-suite.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b