subsurface/tests/testprofile.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

14 lines
197 B
C++

// SPDX-License-Identifier: GPL-2.0
#ifndef TESTPROFILE_H
#define TESTPROFILE_H
#include <QtTest>
class TestProfile : public QObject{
Q_OBJECT
private slots:
void testRedCeiling();
};
#endif