mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
12 lines
185 B
C
12 lines
185 B
C
|
#ifndef TESTUNITCONVERSION_H
|
||
|
#define TESTUNITCONVERSION_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
class TestUnitConversion : public QObject{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void testUnitConversions();
|
||
|
};
|
||
|
|
||
|
#endif
|