This tests adding image files to dives including hashing and evaluating exif data. Signed-off-by: Robert C. Helling <helling@atdotde.de>
14 lines
178 B
C++
14 lines
178 B
C++
#ifndef TESTPICTURE_H
|
|
#define TESTPICTURE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestPicture : public QObject{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void addPicture();
|
|
};
|
|
|
|
#endif
|