diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-02-21 10:27:31 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-02-21 13:14:56 -0800 |
commit | c4976b505a2c4a1fe62610b3c875eac56957c924 (patch) | |
tree | 1ce720746e8d1314500a5bdd2f1fc57a5089f79e /tests/testpicture.h | |
parent | dbd99f706ecb6074d5f80573a881b98a3e30ce25 (diff) | |
download | subsurface-c4976b505a2c4a1fe62610b3c875eac56957c924.tar.gz |
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>
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 |