summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFabian Bumberger <fbumberger@rim.com>2013-09-05 16:58:46 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-10 12:19:52 +0200
commit50241cb82481de3dc9f5681532c3a8ddd381f894 (patch)
tree766df8ee6e200745f2993f501eff117d5b5eff55 /tests
parent1047f9e838c7b3fad79210d193ec334b3d53a0d7 (diff)
Clean up QBluetoothDeviceInfo
This patch removes "ManufacturerSpecificData" because it is not implemented and some dead code. Change-Id: I95a142280835addf65fbedd4a26f3266c7dc0838 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qbluetoothdeviceinfo/tst_qbluetoothdeviceinfo.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/qbluetoothdeviceinfo/tst_qbluetoothdeviceinfo.cpp b/tests/auto/qbluetoothdeviceinfo/tst_qbluetoothdeviceinfo.cpp
index 64a65348..adc61199 100644
--- a/tests/auto/qbluetoothdeviceinfo/tst_qbluetoothdeviceinfo.cpp
+++ b/tests/auto/qbluetoothdeviceinfo/tst_qbluetoothdeviceinfo.cpp
@@ -73,8 +73,6 @@ private slots:
void tst_serviceUuids();
void tst_cached();
-
- void tst_manufacturerSpecificData();
};
tst_QBluetoothDeviceInfo::tst_QBluetoothDeviceInfo()
@@ -375,16 +373,6 @@ void tst_QBluetoothDeviceInfo::tst_cached()
QVERIFY(!(deviceInfo.isCached()));
}
-void tst_QBluetoothDeviceInfo::tst_manufacturerSpecificData()
-{
- QBluetoothDeviceInfo deviceInfo;
- QByteArray data;
- bool available;
- data = deviceInfo.manufacturerSpecificData(&available);
- // Current API implementation returns only empty QByteArray()
- QCOMPARE(data, QByteArray());
-}
-
QTEST_MAIN(tst_QBluetoothDeviceInfo)
#include "tst_qbluetoothdeviceinfo.moc"