Test case for the ThreeGppChannelModel class. More...
Public Member Functions | |
ThreeGppChannelMatrixComputationTest () | |
Constructor. More... | |
virtual | ~ThreeGppChannelMatrixComputationTest () |
Destructor. More... | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. More... | |
std::string | GetName (void) const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | DoComputeNorm (Ptr< ThreeGppChannelModel > channelModel, Ptr< MobilityModel > txMob, Ptr< MobilityModel > rxMob, Ptr< PhasedArrayModel > txAntenna, Ptr< PhasedArrayModel > rxAntenna) |
Compute the Frobenius norm of the channel matrix and stores it in m_normVector. More... | |
virtual void | DoRun (void) |
Build the test scenario. More... | |
Private Attributes | |
std::vector< double > | m_normVector |
each element is the norm of a channel realization More... | |
Additional Inherited Members | |
Public Types inherited from ns3::TestCase | |
enum | TestDuration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 } |
How long the test takes to execute. More... | |
Protected Member Functions inherited from ns3::TestCase | |
TestCase (std::string name) | |
Constructor. More... | |
void | AddTestCase (TestCase *testCase, TestDuration duration=QUICK) |
Add an individual child TestCase to this test suite. More... | |
TestCase * | GetParent () const |
Get the parent of this TestCsse. More... | |
bool | IsStatusFailure (void) const |
Check if any tests failed. More... | |
bool | IsStatusSuccess (void) const |
Check if all tests passed. More... | |
void | SetDataDir (std::string directory) |
Set the data directory where reference trace files can be found. More... | |
void | ReportTestFailure (std::string cond, std::string actual, std::string limit, std::string message, std::string file, int32_t line) |
Log the failure of this TestCase. More... | |
bool | MustAssertOnFailure (void) const |
Check if this run should assert on failure. More... | |
bool | MustContinueOnFailure (void) const |
Check if this run should continue on failure. More... | |
std::string | CreateDataDirFilename (std::string filename) |
Construct the full path to a file in the data directory. More... | |
std::string | CreateTempDirFilename (std::string filename) |
Construct the full path to a file in a temporary directory. More... | |
Test case for the ThreeGppChannelModel class.
1) check if the channel matrix has the correct dimensions 2) check if the channel matrix is correctly normalized
Definition at line 50 of file three-gpp-channel-test-suite.cc.
ThreeGppChannelMatrixComputationTest::ThreeGppChannelMatrixComputationTest | ( | ) |
Constructor.
Definition at line 82 of file three-gpp-channel-test-suite.cc.
|
virtual |
Destructor.
Definition at line 87 of file three-gpp-channel-test-suite.cc.
|
private |
Compute the Frobenius norm of the channel matrix and stores it in m_normVector.
channelModel | the ThreeGppChannelModel object used to generate the channel matrix |
txMob | the mobility model of the first node |
rxMob | the mobility model of the second node |
txAntenna | the antenna object associated to the first node |
rxAntenna | the antenna object associated to the second node |
Definition at line 92 of file three-gpp-channel-test-suite.cc.
References ns3::PhasedArrayModel::GetNumberOfElements(), ns3::MatrixBasedChannelModel::ChannelMatrix::m_channel, and m_normVector.
Referenced by DoRun().
|
privatevirtual |
Build the test scenario.
Implements ns3::TestCase.
Definition at line 117 of file three-gpp-channel-test-suite.cc.
References DoComputeNorm(), ns3::MatrixBasedChannelModel::ChannelMatrix::m_channel, m_normVector, ns3::MilliSeconds(), first::nodes, NS_TEST_ASSERT_MSG_EQ, NS_TEST_ASSERT_MSG_EQ_TOL, and ns3::MobilityModel::SetPosition().
|
private |
each element is the norm of a channel realization
Definition at line 79 of file three-gpp-channel-test-suite.cc.
Referenced by DoComputeNorm(), and DoRun().