subsurface/tests/testpicture.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
214 B
C++

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