You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
/**************************************************************************** |
|
* |
|
* (c) 2009-2020 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. |
|
* |
|
****************************************************************************/ |
|
|
|
#pragma once |
|
|
|
#include "UnitTest.h" |
|
#include "MultiSignalSpy.h" |
|
#include "StructureScanComplexItem.h" |
|
#include "PlanMasterController.h" |
|
|
|
class StructureScanComplexItemTest : public UnitTest |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
StructureScanComplexItemTest(void); |
|
|
|
protected: |
|
void init(void) final; |
|
void cleanup(void) final; |
|
|
|
private slots: |
|
void _testDirty(void); |
|
void _testSaveLoad(void); |
|
void _testItemCount(void); |
|
|
|
private: |
|
void _initItem(void); |
|
void _validateItem(StructureScanComplexItem* item); |
|
|
|
enum { |
|
dirtyChangedIndex, |
|
maxSignalIndex |
|
}; |
|
|
|
enum { |
|
dirtyChangedMask = 1 << dirtyChangedIndex |
|
}; |
|
|
|
static const size_t _cSignals = maxSignalIndex; |
|
const char* _rgSignals[_cSignals]; |
|
|
|
PlanMasterController* _masterController = nullptr; |
|
MultiSignalSpy* _multiSpy = nullptr; |
|
StructureScanComplexItem* _structureScanItem = nullptr; |
|
QList<QGeoCoordinate> _polyPoints; |
|
};
|
|
|