mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-08 10:03:58 +02:00
Update doxygen documentation
This commit is contained in:
parent
61b6fd7ea1
commit
f17ff6abc6
38 changed files with 1023 additions and 124 deletions
|
@ -21,6 +21,18 @@
|
|||
|
||||
using namespace ns3;
|
||||
|
||||
/**
|
||||
* \ingroup leo
|
||||
* \defgroup leo-test LEO module tests
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* \ingroup leo-test
|
||||
* \ingroup tests
|
||||
*
|
||||
* \brief Unit tests
|
||||
*/
|
||||
class LeoWaypointFileEmptyTestCase : public TestCase
|
||||
{
|
||||
public:
|
||||
|
@ -57,6 +69,12 @@ LeoWaypointFileEmptyTestCase::DoRun (void)
|
|||
NS_TEST_ASSERT_MSG_EQ ((i == 0), true, "Reading waypoints from empty");
|
||||
}
|
||||
|
||||
/**
|
||||
* \ingroup leo-test
|
||||
* \ingroup tests
|
||||
*
|
||||
* \brief Unit tests
|
||||
*/
|
||||
class LeoWaypointSomeEntriesTestCase : public TestCase
|
||||
{
|
||||
public:
|
||||
|
@ -93,6 +111,12 @@ LeoWaypointSomeEntriesTestCase::DoRun (void)
|
|||
NS_TEST_ASSERT_MSG_EQ ((i > 0), true, "Reading from non-empty stream succeeds");
|
||||
}
|
||||
|
||||
/**
|
||||
* \ingroup leo-test
|
||||
* \ingroup tests
|
||||
*
|
||||
* \brief Unit tests
|
||||
*/
|
||||
class LeoWaypointsTestSuite : public TestSuite
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue