diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-14 14:00:23 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-14 14:00:23 +0100 |
commit | 8f856f55732e6427e9b4994343b01f9ac0e0daee (patch) | |
tree | 09ca49c42d53ed4510d0aa7231bdb2cdad0be459 /tests/TestUtil.h | |
parent | 4623aa44f58575b6d2ceb0b047945ffeb0081f65 (diff) | |
parent | 1167a66ac89d1510fbb522544e9733cc086f35eb (diff) | |
download | MultiMC-8f856f55732e6427e9b4994343b01f9ac0e0daee.tar MultiMC-8f856f55732e6427e9b4994343b01f9ac0e0daee.tar.gz MultiMC-8f856f55732e6427e9b4994343b01f9ac0e0daee.tar.lz MultiMC-8f856f55732e6427e9b4994343b01f9ac0e0daee.tar.xz MultiMC-8f856f55732e6427e9b4994343b01f9ac0e0daee.zip |
Merge branch 'testing' of https://github.com/02JanDal/MultiMC5 into develop
Conflicts:
MultiMC.cpp
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); \ +} |