diff options
Diffstat (limited to 'tests/testhelper.h')
-rw-r--r-- | tests/testhelper.h | 15 |
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 |