summaryrefslogtreecommitdiffstats
path: root/tests/testplan.h
blob: 7822129d3d44fa6d6c6d89d5c33c6d198b1b68a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TESTPLAN_H
#define TESTPLAN_H

#include <QTest>

class TestPlan : public QObject {
	Q_OBJECT
private slots:
	void testImperial();
	void testMetric();
	void testVpmbMetric();
};

#endif // TESTPLAN_H