subsurface/tests/testunitconversion.h
Dirk Hohndel ee1bf18189 Add SPDX header to tests
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2017-04-29 13:32:55 -07:00

13 lines
222 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