mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
c4976b505a
This tests adding image files to dives including hashing and evaluating exif data. Signed-off-by: Robert C. Helling <helling@atdotde.de>
13 lines
178 B
C++
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
|