mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
14 lines
183 B
C
14 lines
183 B
C
|
#ifndef TESTPLAN_H
|
||
|
#define TESTPLAN_H
|
||
|
|
||
|
#include <QTest>
|
||
|
|
||
|
class TestPlan : public QObject {
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void testImperial();
|
||
|
void testMetric();
|
||
|
};
|
||
|
|
||
|
#endif // TESTPLAN_H
|