diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2016-08-28 20:11:29 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-08-28 20:01:23 -0700 |
commit | 3dce5de12ddbf310ed047227f3470d478b505540 (patch) | |
tree | 920080e9d856d3ea3f0d0c511b97f123c76fca1b /tests/testpreferences.h | |
parent | e54f81855dc49e302e42e17538256fe738dba73f (diff) | |
download | subsurface-3dce5de12ddbf310ed047227f3470d478b505540.tar.gz |
Add the beginning of the Preferences test
And it actually helped me to find a bug. yey.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'tests/testpreferences.h')
-rw-r--r-- | tests/testpreferences.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/testpreferences.h b/tests/testpreferences.h new file mode 100644 index 000000000..9b2c44ab3 --- /dev/null +++ b/tests/testpreferences.h @@ -0,0 +1,14 @@ +#ifndef TESTDIVESITEDUPLICATION_H +#define TESTDIVESITEDUPLICATION_H + +#include <QTest> +#include <functional> + +class TestPreferences : public QObject +{ + Q_OBJECT +private slots: + void testPreferences(); +}; + +#endif // TESTDIVESITEDUPLICATION_H |