UnitTestList.cc 1.88 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11 12 13 14 15 16 17 18 19 20 21

// We keep the list of all unit tests in a global location so it's easier to see which
// ones are enabled/disabled

#include "FactSystemTestGeneric.h"
#include "FactSystemTestPX4.h"
#include "FileDialogTest.h"
#include "FlightGearTest.h"
#include "GeoTest.h"
#include "LinkManagerTest.h"
#include "MessageBoxTest.h"
#include "MissionItemTest.h"
22
#include "SimpleMissionItemTest.h"
23
#include "ComplexMissionItemTest.h"
24
#include "MissionControllerTest.h"
25
#include "MissionManagerTest.h"
26
#include "RadioConfigTest.h"
27 28
#include "SetupViewTest.h"
#include "MavlinkLogTest.h"
29 30 31
#include "MainWindowTest.h"
#include "FileManagerTest.h"
#include "TCPLinkTest.h"
32
#include "ParameterLoaderTest.h"
33 34 35 36 37 38 39 40 41 42

UT_REGISTER_TEST(FactSystemTestGeneric)
UT_REGISTER_TEST(FactSystemTestPX4)
UT_REGISTER_TEST(FileDialogTest)
UT_REGISTER_TEST(FlightGearUnitTest)
UT_REGISTER_TEST(GeoTest)
UT_REGISTER_TEST(LinkManagerTest)
UT_REGISTER_TEST(MavlinkLogTest)
UT_REGISTER_TEST(MessageBoxTest)
UT_REGISTER_TEST(MissionItemTest)
43
UT_REGISTER_TEST(SimpleMissionItemTest)
44
UT_REGISTER_TEST(ComplexMissionItemTest)
45
UT_REGISTER_TEST(MissionControllerTest)
46
UT_REGISTER_TEST(MissionManagerTest)
47
UT_REGISTER_TEST(RadioConfigTest)
48 49
UT_REGISTER_TEST(TCPLinkTest)
UT_REGISTER_TEST(FileManagerTest)
50
UT_REGISTER_TEST(ParameterLoaderTest)
51 52 53 54

// List of unit test which are currently disabled.
// If disabling a new test, include reason in comment.

55 56
// works, but causes other tests to fail
//UT_REGISTER_TEST(SetupViewTest)
57 58 59 60

// FIXME: Temporarily disabled until this can be stabilized
//UT_REGISTER_TEST(MainWindowTest)