diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2013-12-02 11:09:56 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2013-12-02 11:09:56 +0100 |
commit | 0a6399b52cc72980b4847510cc183b54c75d1821 (patch) | |
tree | cc3087d7fce7fbbe39836f49d5eed1da86cea048 /tests/TestUtil.h | |
parent | 613699b3626aea750093ab7eaaeccaa28c0e87c6 (diff) | |
download | MultiMC-0a6399b52cc72980b4847510cc183b54c75d1821.tar MultiMC-0a6399b52cc72980b4847510cc183b54c75d1821.tar.gz MultiMC-0a6399b52cc72980b4847510cc183b54c75d1821.tar.lz MultiMC-0a6399b52cc72980b4847510cc183b54c75d1821.tar.xz MultiMC-0a6399b52cc72980b4847510cc183b54c75d1821.zip |
Unit testing
Diffstat (limited to 'tests/TestUtil.h')
-rw-r--r-- | tests/TestUtil.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/TestUtil.h b/tests/TestUtil.h new file mode 100644 index 00000000..64ee1675 --- /dev/null +++ b/tests/TestUtil.h @@ -0,0 +1,31 @@ +#pragma once + +#include <QFile> +#include <QCoreApplication> +#include <QTest> +#include <QDir> + +#include "MultiMC.h" + +struct TestsInternal +{ + static QByteArray readFile(const QString &fileName) + { + QFile f(fileName); + f.open(QFile::ReadOnly); + return f.readAll(); + } +}; + +#define MULTIMC_GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA( file )) + +#define QTEST_GUILESS_MAIN_MULTIMC(TestObject) \ +int main(int argc, char *argv[]) \ +{ \ + char *argv_[] = { argv[0] }; \ + int argc_ = 1; \ + MultiMC app(argc_, argv_, QDir::temp().absoluteFilePath("MultiMC_Test")); \ + app.setAttribute(Qt::AA_Use96Dpi, true); \ + TestObject tc; \ + return QTest::qExec(&tc, argc, argv); \ +} |