diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testparse.cpp | 6 | ||||
-rw-r--r-- | tests/testparse.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/testparse.cpp b/tests/testparse.cpp index 8d4cedb43..e9d313e5d 100644 --- a/tests/testparse.cpp +++ b/tests/testparse.cpp @@ -4,6 +4,12 @@ #include "core/divelist.h" #include <QTextStream> +void TestParse::initTestCase() +{ + /* we need to manually tell that the resource exists, because we are using it as library. */ + Q_INIT_RESOURCE(subsurface); +} + char *intdup(int index) { char tmpbuf[21]; diff --git a/tests/testparse.h b/tests/testparse.h index 5616f0718..d99f9e53e 100644 --- a/tests/testparse.h +++ b/tests/testparse.h @@ -6,6 +6,7 @@ class TestParse : public QObject{ Q_OBJECT private slots: + void initTestCase(); void testParseCSV(); void testParseDivingLog(); void testParseV2NoQuestion(); |