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
30using namespace ns3;
31
32
46{
47public:
59 LenaFdTbfqFfMacSchedulerTestCase1 (uint16_t nUser, double dist, double thrRefDl, double thrRefUl, uint16_t packetSize, uint16_t interval, bool errorModelEnabled);
61
62private:
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{
92public:
102 LenaFdTbfqFfMacSchedulerTestCase2 (std::vector<double> dist, std::vector<uint32_t> estThrFdTbfqDl, std::vector<uint16_t> packetSize, uint16_t interval, bool errorModelEnabled);
104
105private:
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{
132public:
134};
135
136
137
138#endif /* LENA_TEST_FDTBFQ_FF_MAC_SCHEDULER_H */
This system test program creates different test cases with a single eNB and several UEs,...
static std::string BuildNameString(uint16_t nUser, double dist)
Builds the test name string based on provided parameter values.
LenaFdTbfqFfMacSchedulerTestCase1(uint16_t nUser, double dist, double thrRefDl, double thrRefUl, uint16_t packetSize, uint16_t interval, bool errorModelEnabled)
Constructor.
virtual void DoRun(void)
Implementation to actually run this TestCase.
bool m_errorModelEnabled
whether the error model is enabled
Test case is simillar to the one defined in LenaFdTbfqFfMacSchedulerTestCase1, with the difference th...
std::vector< uint32_t > m_estThrFdTbfqDl
estimated thrpughput FDTBFQ DL
virtual void DoRun(void)
Implementation to actually run this TestCase.
static std::string BuildNameString(uint16_t nUser, std::vector< double > dist)
Builds the test name string based on provided parameter values.
std::vector< double > m_dist
distance between the nodes
std::vector< uint16_t > m_packetSize
packet size in bytes
LenaFdTbfqFfMacSchedulerTestCase2(std::vector< double > dist, std::vector< uint32_t > estThrFdTbfqDl, std::vector< uint16_t > packetSize, uint16_t interval, bool errorModelEnabled)
Constructor.
Test suit for FdTbfqFfMacScheduler test.
encapsulates test code
Definition: test.h:994
A suite of tests to run.
Definition: test.h:1188
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static const uint32_t packetSize
Pcket size generated at the AP.