UnitTestList.cc 3.19 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * 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

// 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"
16
//#include "FileDialogTest.h"
17 18
#include "GeoTest.h"
#include "LinkManagerTest.h"
19
//#include "MessageBoxTest.h"
20
#include "MissionItemTest.h"
21
#include "SimpleMissionItemTest.h"
22
#include "SurveyComplexItemTest.h"
23
#include "MissionControllerTest.h"
24
#include "MissionManagerTest.h"
25
//#include "RadioConfigTest.h"
26
#include "MavlinkLogTest.h"
27 28
//#include "MainWindowTest.h"
//#include "FileManagerTest.h"
29
#include "TCPLinkTest.h"
30
#include "ParameterManagerTest.h"
31
#include "MissionCommandTreeTest.h"
32
//#include "LogDownloadTest.h"
33 34
#include "SendMavCommandWithSignallingTest.h"
#include "SendMavCommandWithHandlerTest.h"
35 36 37
#include "VisualMissionItemTest.h"
#include "CameraSectionTest.h"
#include "SpeedSectionTest.h"
38
#include "PlanMasterControllerTest.h"
39
#include "MissionSettingsTest.h"
40
#include "QGCMapPolygonTest.h"
41
#include "AudioOutputTest.h"
42
#include "StructureScanComplexItemTest.h"
43 44
#include "QGCMapPolylineTest.h"
#include "CorridorScanComplexItemTest.h"
45 46
#include "TransectStyleComplexItemTest.h"
#include "CameraCalcTest.h"
47
#include "FWLandingPatternTest.h"
48
#include "RequestMessageTest.h"
49 50
#include "InitialConnectTest.h"
#include "FTPManagerTest.h"
51 52 53

UT_REGISTER_TEST(FactSystemTestGeneric)
UT_REGISTER_TEST(FactSystemTestPX4)
54
//UT_REGISTER_TEST(FileDialogTest)
55 56
UT_REGISTER_TEST(GeoTest)
UT_REGISTER_TEST(LinkManagerTest)
57
//UT_REGISTER_TEST(MessageBoxTest)
58 59 60
UT_REGISTER_TEST(SendMavCommandWithSignallingTest)
UT_REGISTER_TEST(SendMavCommandWithHandlerTest)
UT_REGISTER_TEST(RequestMessageTest)
61 62
UT_REGISTER_TEST(FTPManagerTest)
UT_REGISTER_TEST(InitialConnectTest)
63
UT_REGISTER_TEST(MissionItemTest)
64
UT_REGISTER_TEST(SimpleMissionItemTest)
65
UT_REGISTER_TEST(MissionControllerTest)
66
UT_REGISTER_TEST(MissionManagerTest)
67
//UT_REGISTER_TEST(RadioConfigTest)
68
UT_REGISTER_TEST(TCPLinkTest)
69
//UT_REGISTER_TEST(FileManagerTest)
70
UT_REGISTER_TEST(ParameterManagerTest)
71
UT_REGISTER_TEST(MissionCommandTreeTest)
72
//UT_REGISTER_TEST(LogDownloadTest)
73
UT_REGISTER_TEST(SurveyComplexItemTest)
74 75
UT_REGISTER_TEST(CameraSectionTest)
UT_REGISTER_TEST(SpeedSectionTest)
76
UT_REGISTER_TEST(PlanMasterControllerTest)
77
UT_REGISTER_TEST(MissionSettingsTest)
78
UT_REGISTER_TEST(QGCMapPolygonTest)
79
UT_REGISTER_TEST(AudioOutputTest)
80
UT_REGISTER_TEST(StructureScanComplexItemTest)
81
UT_REGISTER_TEST(CorridorScanComplexItemTest)
82
UT_REGISTER_TEST(TransectStyleComplexItemTest)
83
UT_REGISTER_TEST(QGCMapPolylineTest)
84
UT_REGISTER_TEST(CameraCalcTest)
85
UT_REGISTER_TEST(FWLandingPatternTest)
86 87 88 89 90 91 92

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

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

93
// Needs to be update for latest updates
94
//UT_REGISTER_TEST(MavlinkLogTest)