Test for basic image handling

This tests adding image files to dives including hashing and evaluating
exif data.

Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
Robert C. Helling 2017-02-21 10:27:31 +01:00 committed by Dirk Hohndel
parent dbd99f706e
commit c4976b505a
4 changed files with 87 additions and 0 deletions

13
tests/testpicture.h Normal file
View file

@ -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