aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testprofile.h
blob: 2ae832190aa698dbad901952b1c9a42605d08dfd (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 TESTPROFILE_H
#define TESTPROFILE_H

#include <QtTest>

class TestProfile : public QObject {
	Q_OBJECT
private slots:
	void init();
	void testProfileExport();
	void testProfileExportVPMB();
};

#endif