diff options
Diffstat (limited to 'tests/testpicture.h')
-rw-r--r-- | tests/testpicture.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/testpicture.h b/tests/testpicture.h new file mode 100644 index 000000000..e6b8e859e --- /dev/null +++ b/tests/testpicture.h @@ -0,0 +1,13 @@ +#ifndef TESTPICTURE_H +#define TESTPICTURE_H + +#include <QtTest> + +class TestPicture : public QObject{ + Q_OBJECT +private slots: + void initTestCase(); + void addPicture(); +}; + +#endif |