subsurface/tests/testhelper.h
Dirk Hohndel c6b62cbe5c tests: add test for the BT/BLE address recognition
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2018-10-12 08:22:44 -07:00

15 lines
239 B
C++

// 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