2017-04-27 20:21:27 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-02-21 10:27:31 +01:00
|
|
|
#ifndef TESTPICTURE_H
|
|
|
|
#define TESTPICTURE_H
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
|
|
class TestPicture : public QObject{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void initTestCase();
|
|
|
|
void addPicture();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|