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

Unified Diff: src/core/test/time-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/threaded-test-suite.cc ('k') | src/core/test/timer-test-suite.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/test/time-test-suite.cc
===================================================================
--- a/src/core/test/time-test-suite.cc
+++ b/src/core/test/time-test-suite.cc
@@ -31,6 +31,12 @@
using namespace ns3;
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Basic time test
+ */
class TimeSimpleTestCase : public TestCase
{
public:
@@ -102,6 +108,12 @@
{
}
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Time with sign test
+ */
class TimeWithSignTestCase : public TestCase
{
public:
@@ -158,12 +170,22 @@
}
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Time input / output test
+ */
class TimeInputOutputTestCase : public TestCase
{
public:
TimeInputOutputTestCase ();
private:
virtual void DoRun (void);
+ /**
+ * Check test function
+ * \param str the reference string
+ */
void Check (const std::string & str);
};
@@ -230,6 +252,12 @@
std::cout << std::endl;
}
+/**
+ * \ingroup core-test
+ * \ingroup tests
+ *
+ * \brief Time test suite
+ */
static class TimeTestSuite : public TestSuite
{
public:
@@ -241,6 +269,4 @@
// This should be last, since it changes the resolution
AddTestCase (new TimeSimpleTestCase (), TestCase::QUICK);
}
-} g_timeTestSuite;
-
-
+} g_timeTestSuite; ///< the test suite
« no previous file with comments | « src/core/test/threaded-test-suite.cc ('k') | src/core/test/timer-test-suite.cc » ('j') | no next file with comments »

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