summaryrefslogtreecommitdiffstats
path: root/tests/testhelper.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-09-24 17:24:15 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-12 08:22:44 -0700
commitc6b62cbe5c4662984f1a3650e4913fe0e9b9383b (patch)
treee4a0bbf4b4a57ca14ceb43bf66b160e89dc6cf97 /tests/testhelper.h
parent0cfd76740b1af1424c39151e1628e1af6480a2d6 (diff)
downloadsubsurface-c6b62cbe5c4662984f1a3650e4913fe0e9b9383b.tar.gz
tests: add test for the BT/BLE address recognition
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'tests/testhelper.h')
-rw-r--r--tests/testhelper.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/testhelper.h b/tests/testhelper.h
new file mode 100644
index 000000000..e6af513dc
--- /dev/null
+++ b/tests/testhelper.h
@@ -0,0 +1,15 @@
+// SPDX-License-Identifier: GPL-2.0
+#ifndef TESTPARSE_H
+#define TESTPARSE_H
+
+#include <QtTest>
+#include <sqlite3.h>
+
+class TestHelper : public QObject {
+ Q_OBJECT
+private slots:
+ void initTestCase();
+ void recognizeBtAddress();
+};
+
+#endif