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