summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-10-30 13:48:32 +0100
committerAlex Blasche <alexander.blasche@digia.com>2014-11-04 09:47:35 +0100
commitcc5a370e2daad34e05dde7c9c0854ea3bf4eb3fc (patch)
treed42be4233a2bcab1b59bf04606b977dbd8cc84fd /tests
parentd8782607521e3d279c2aa2e5d909bd8f3e7a2300 (diff)
Make compile unit tests
The ControllerState and Error enums were recently registered declared via Q_DECLARE_METATYPE. This fix removes the duplication and resulting compile error. Change-Id: I38233bc067f7d94fd0dbfefbf5a6a2b08d2c6a49 Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qlowenergycharacteristic/tst_qlowenergycharacteristic.cpp4
-rw-r--r--tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp4
-rw-r--r--tests/auto/qlowenergydescriptor/tst_qlowenergydescriptor.cpp4
3 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/qlowenergycharacteristic/tst_qlowenergycharacteristic.cpp b/tests/auto/qlowenergycharacteristic/tst_qlowenergycharacteristic.cpp
index e65b573c..da748b05 100644
--- a/tests/auto/qlowenergycharacteristic/tst_qlowenergycharacteristic.cpp
+++ b/tests/auto/qlowenergycharacteristic/tst_qlowenergycharacteristic.cpp
@@ -67,14 +67,10 @@ private:
QLowEnergyService *globalService;
};
-Q_DECLARE_METATYPE(QLowEnergyController::ControllerState)
-
tst_QLowEnergyCharacteristic::tst_QLowEnergyCharacteristic() :
globalControl(0), globalService(0)
{
QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
-
- qRegisterMetaType<QLowEnergyController::ControllerState>();
}
tst_QLowEnergyCharacteristic::~tst_QLowEnergyCharacteristic()
diff --git a/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp b/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
index 10fceb00..3cb57e3f 100644
--- a/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
+++ b/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
@@ -83,15 +83,11 @@ private:
Q_DECLARE_METATYPE(QLowEnergyCharacteristic)
Q_DECLARE_METATYPE(QLowEnergyDescriptor)
Q_DECLARE_METATYPE(QLowEnergyService::ServiceError)
-Q_DECLARE_METATYPE(QLowEnergyController::ControllerState)
-Q_DECLARE_METATYPE(QLowEnergyController::Error)
tst_QLowEnergyController::tst_QLowEnergyController()
{
qRegisterMetaType<QLowEnergyCharacteristic>();
qRegisterMetaType<QLowEnergyDescriptor>();
- qRegisterMetaType<QLowEnergyController::ControllerState>();
- qRegisterMetaType<QLowEnergyController::Error>();
//QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
const QString remote = qgetenv("BT_TEST_DEVICE");
diff --git a/tests/auto/qlowenergydescriptor/tst_qlowenergydescriptor.cpp b/tests/auto/qlowenergydescriptor/tst_qlowenergydescriptor.cpp
index 6678daab..a0960c57 100644
--- a/tests/auto/qlowenergydescriptor/tst_qlowenergydescriptor.cpp
+++ b/tests/auto/qlowenergydescriptor/tst_qlowenergydescriptor.cpp
@@ -67,14 +67,10 @@ private:
QLowEnergyService *globalService;
};
-Q_DECLARE_METATYPE(QLowEnergyController::ControllerState)
-
tst_QLowEnergyDescriptor::tst_QLowEnergyDescriptor() :
globalControl(0), globalService(0)
{
QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
-
- qRegisterMetaType<QLowEnergyController::ControllerState>();
}
tst_QLowEnergyDescriptor::~tst_QLowEnergyDescriptor()