subsurface/tests/testpicture.h
Robert C. Helling c4976b505a 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>
2017-02-21 13:14:56 -08:00

13 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