2020-09-02 18:49:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 James Turner
|
|
|
|
*
|
|
|
|
* This file is part of the program FlightGear.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cppunit/TestFixture.h>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
|
|
|
|
class SGGeod;
|
|
|
|
|
2021-02-13 08:27:56 +00:00
|
|
|
class FGAIAircraft;
|
|
|
|
|
2020-09-02 18:49:33 +00:00
|
|
|
// The flight plan unit tests.
|
|
|
|
class TrafficTests : public CppUnit::TestFixture
|
|
|
|
{
|
|
|
|
// Set up the test suite.
|
|
|
|
CPPUNIT_TEST_SUITE(TrafficTests);
|
2020-12-21 13:25:15 +00:00
|
|
|
CPPUNIT_TEST(testPushback);
|
2021-03-10 20:27:06 +00:00
|
|
|
CPPUNIT_TEST(testPushbackCargo);
|
2021-02-20 07:22:56 +00:00
|
|
|
CPPUNIT_TEST(testChangeRunway);
|
|
|
|
CPPUNIT_TEST(testPushforward);
|
2021-02-22 17:17:47 +00:00
|
|
|
CPPUNIT_TEST(testPushforwardSpeedy);
|
2021-02-21 07:22:31 +00:00
|
|
|
CPPUNIT_TEST(testPushforwardParkYBBN);
|
2021-03-08 20:57:58 +00:00
|
|
|
CPPUNIT_TEST(testPushforwardParkYBBNRepeat);
|
2020-09-02 18:49:33 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
|
|
// Set up function for each test.
|
|
|
|
void setUp();
|
|
|
|
|
|
|
|
// Clean up after each test.
|
|
|
|
void tearDown();
|
|
|
|
|
2021-03-10 20:27:06 +00:00
|
|
|
// Pushback Tests
|
2020-12-21 13:25:15 +00:00
|
|
|
void testPushback();
|
2021-03-10 20:27:06 +00:00
|
|
|
void testPushbackCargo();
|
2021-02-20 07:22:56 +00:00
|
|
|
void testChangeRunway();
|
2021-03-10 20:27:06 +00:00
|
|
|
//GA Tests with forward push
|
2021-02-20 07:22:56 +00:00
|
|
|
void testPushforward();
|
2021-02-22 17:17:47 +00:00
|
|
|
void testPushforwardSpeedy();
|
2021-02-21 07:22:31 +00:00
|
|
|
void testPushforwardParkYBBN();
|
2021-03-08 20:57:58 +00:00
|
|
|
void testPushforwardParkYBBNRepeat();
|
2021-02-13 08:27:56 +00:00
|
|
|
private:
|
2021-03-10 20:27:06 +00:00
|
|
|
std::string getTimeString(int timeOffset);
|
|
|
|
FGAIAircraft * flyAI(FGAIAircraft * aiAircraft, std::string fName);
|
2020-09-02 18:49:33 +00:00
|
|
|
};
|