blob: b35cd75c69e701bf2b63c738deb56e5d3df759af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TESTPLAN_H
#define TESTPLAN_H
#include <QTest>
class TestPlan : public QObject {
Q_OBJECT
private slots:
void testImperial();
void testMetric();
};
#endif // TESTPLAN_H
|