A Discrete-Event Network Simulator
API
lte-test-fdtbfq-ff-mac-scheduler.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Marco Miozzo <marco.miozzo@cttc.es>,
19  * Nicola Baldo <nbaldo@cttc.es>
20  * Dizhi Zhou <dizhi.zhou@gmail.com>
21  */
22 
23 #ifndef LENA_TEST_FDTBFQ_FF_MAC_SCHEDULER_H
24 #define LENA_TEST_FDTBFQ_FF_MAC_SCHEDULER_H
25 
26 #include "ns3/simulator.h"
27 #include "ns3/test.h"
28 
29 
30 using namespace ns3;
31 
32 
46 {
47 public:
59  LenaFdTbfqFfMacSchedulerTestCase1 (uint16_t nUser, double dist, double thrRefDl, double thrRefUl, uint16_t packetSize, uint16_t interval, bool errorModelEnabled);
61 
62 private:
70  static std::string BuildNameString (uint16_t nUser, double dist);
71  virtual void DoRun (void);
72  uint16_t m_nUser;
73  double m_dist;
74  uint16_t m_packetSize;
75  uint16_t m_interval;
76  double m_thrRefDl;
77  double m_thrRefUl;
79 };
80 
81 
91 {
92 public:
102  LenaFdTbfqFfMacSchedulerTestCase2 (std::vector<double> dist, std::vector<uint32_t> estThrFdTbfqDl, std::vector<uint16_t> packetSize, uint16_t interval, bool errorModelEnabled);
104 
105 private:
113  static std::string BuildNameString (uint16_t nUser, std::vector<double> dist);
114  virtual void DoRun (void);
115  uint16_t m_nUser;
116  std::vector<double> m_dist;
117  std::vector<uint16_t> m_packetSize;
118  uint16_t m_interval;
119  std::vector<uint32_t> m_estThrFdTbfqDl;
121 };
122 
123 
131 {
132 public:
134 };
135 
136 
137 
138 #endif /* LENA_TEST_FDTBFQ_FF_MAC_SCHEDULER_H */
static const uint32_t packetSize
A suite of tests to run.
Definition: test.h:1343
Test case is simillar to the one defined in LenaFdTbfqFfMacSchedulerTestCase1, with the difference th...
encapsulates test code
Definition: test.h:1153
bool m_errorModelEnabled
whether the error model is enabled
std::vector< uint32_t > m_estThrFdTbfqDl
estimated thrpughput FDTBFQ DL
std::vector< uint16_t > m_packetSize
packet size in bytes
This system test program creates different test cases with a single eNB and several UEs...
std::vector< double > m_dist
distance between the nodes
double m_dist
distance between the nodes
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Test suit for FdTbfqFfMacScheduler test.