mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 19:23:25 +00:00
13 lines
223 B
C++
13 lines
223 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTUNITCONVERSION_H
|
|
#define TESTUNITCONVERSION_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestUnitConversion : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void testUnitConversions();
|
|
};
|
|
|
|
#endif
|