mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 23:36:16 +00:00
15 lines
239 B
C++
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
|