UnitTestList.cc 2.49 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 "SurveyMissionItemTest.h"
24
#include "MissionControllerTest.h"
25
#include "MissionManagerTest.h"
26
#include "RadioConfigTest.h"
27
#include "MavlinkLogTest.h"
28 29 30
#include "MainWindowTest.h"
#include "FileManagerTest.h"
#include "TCPLinkTest.h"
31
#include "ParameterManagerTest.h"
32
#include "MissionCommandTreeTest.h"
33
#include "LogDownloadTest.h"
34
#include "SendMavCommandTest.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 42 43 44 45 46 47 48 49

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(MessageBoxTest)
UT_REGISTER_TEST(MissionItemTest)
50
UT_REGISTER_TEST(SimpleMissionItemTest)
51
UT_REGISTER_TEST(MissionControllerTest)
52
UT_REGISTER_TEST(MissionManagerTest)
53
UT_REGISTER_TEST(RadioConfigTest)
54
UT_REGISTER_TEST(TCPLinkTest)
55
UT_REGISTER_TEST(ParameterManagerTest)
56
UT_REGISTER_TEST(MissionCommandTreeTest)
57
UT_REGISTER_TEST(LogDownloadTest)
58
UT_REGISTER_TEST(SendMavCommandTest)
Don Gagne's avatar
Don Gagne committed
59
UT_REGISTER_TEST(SurveyMissionItemTest)
60 61
UT_REGISTER_TEST(CameraSectionTest)
UT_REGISTER_TEST(SpeedSectionTest)
62
UT_REGISTER_TEST(PlanMasterControllerTest)
63
UT_REGISTER_TEST(MissionSettingsTest)
64
UT_REGISTER_TEST(QGCMapPolygonTest)
65 66 67 68 69 70 71

// 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)

Don Gagne's avatar
Don Gagne committed
72 73 74
// Onboard file support has been removed until it can be make to work correctly
//UT_REGISTER_TEST(FileManagerTest)

75
// Needs to be update for latest updates
76
//UT_REGISTER_TEST(MavlinkLogTest)