aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testhelper.h
blob: 00a187c6f43739f235133990026365bc2d1012e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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();
	void parseNameAddress();
};

#endif