Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
08caae78
Commit
08caae78
authored
Nov 30, 2014
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused code
This was leftover from a problem I was having with virtual slots
parent
3332ec2f
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
32 deletions
+0
-32
FlightGearTest.h
src/qgcunittest/FlightGearTest.h
+0
-5
LinkManagerTest.h
src/qgcunittest/LinkManagerTest.h
+0
-3
MainWindowTest.h
src/qgcunittest/MainWindowTest.h
+0
-2
MessageBoxTest.h
src/qgcunittest/MessageBoxTest.h
+0
-3
PX4RCCalibrationTest.h
src/qgcunittest/PX4RCCalibrationTest.h
+0
-1
QGCUASFileManagerTest.h
src/qgcunittest/QGCUASFileManagerTest.h
+0
-1
TCPLinkTest.h
src/qgcunittest/TCPLinkTest.h
+0
-2
UASUnitTest.h
src/qgcunittest/UASUnitTest.h
+0
-2
UnitTest.h
src/qgcunittest/UnitTest.h
+0
-13
No files found.
src/qgcunittest/FlightGearTest.h
View file @
08caae78
...
...
@@ -41,11 +41,6 @@ public:
FlightGearUnitTest
(
void
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
UT_DECLARE_DEFAULT_init
UT_DECLARE_DEFAULT_cleanup
void
_parseUIArguments_test
(
void
);
};
...
...
src/qgcunittest/LinkManagerTest.h
View file @
08caae78
...
...
@@ -41,9 +41,6 @@ public:
LinkManagerTest
(
void
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/MainWindowTest.h
View file @
08caae78
...
...
@@ -39,8 +39,6 @@ public:
MainWindowTest
(
void
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/MessageBoxTest.h
View file @
08caae78
...
...
@@ -39,9 +39,6 @@ public:
MessageBoxTest
(
void
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
UT_DECLARE_DEFAULT_init
void
cleanup
(
void
);
void
_messageBoxExpected_test
(
void
);
...
...
src/qgcunittest/PX4RCCalibrationTest.h
View file @
08caae78
...
...
@@ -45,7 +45,6 @@ public:
private
slots
:
void
initTestCase
(
void
);
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/QGCUASFileManagerTest.h
View file @
08caae78
...
...
@@ -48,7 +48,6 @@ public:
private
slots
:
// Test case initialization
void
initTestCase
(
void
);
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/TCPLinkTest.h
View file @
08caae78
...
...
@@ -45,8 +45,6 @@ signals:
void
waitForReadyRead
(
int
msecs
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/UASUnitTest.h
View file @
08caae78
...
...
@@ -21,8 +21,6 @@ public:
UASUnitTest
(
void
);
private
slots
:
UT_DECLARE_DEFAULT_initTestCase
UT_DECLARE_DEFAULT_cleanupTestCase
void
init
(
void
);
void
cleanup
(
void
);
...
...
src/qgcunittest/UnitTest.h
View file @
08caae78
...
...
@@ -35,19 +35,6 @@
#define UT_REGISTER_TEST(className) static UnitTestWrapper<className> t(#className);
/// @brief If you don't need you own specific implemenation of the test case setup methods
/// you can use these macros to declare the default implementation which just calls
/// the base class.
#define UT_DECLARE_DEFAULT_initTestCase
//virtual void initTestCase(void) { UnitTest::_initTestCase(); }
#define UT_DECLARE_DEFAULT_cleanupTestCase
// virtual void cleanupTestCase(void) { UnitTest::_cleanupTestCase(); }
#define UT_DECLARE_DEFAULT_init
//virtual void init(void) { UnitTest::_init(); }
#define UT_DECLARE_DEFAULT_cleanup
//virtual void cleanup(void) { UnitTest::_cleanup(); }
class
QGCMessageBox
;
class
UnitTest
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment