diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-01-31 19:21:47 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-02 11:30:38 +0200 |
commit | 9249768db5f5b09d67e81370da828e3cb99cc3df (patch) | |
tree | 3b915d591fe4cada33da7ebb8d9fd67df7d6a467 /tests/TestUtil.h | |
parent | 6f3aa65bd69f5155fa1ee56dee840e2e7e1d3c6f (diff) | |
download | MultiMC-9249768db5f5b09d67e81370da828e3cb99cc3df.tar MultiMC-9249768db5f5b09d67e81370da828e3cb99cc3df.tar.gz MultiMC-9249768db5f5b09d67e81370da828e3cb99cc3df.tar.lz MultiMC-9249768db5f5b09d67e81370da828e3cb99cc3df.tar.xz MultiMC-9249768db5f5b09d67e81370da828e3cb99cc3df.zip |
NOISSUE Make tests no longer use the MultiMC object
They do not require the application part anymore
Diffstat (limited to 'tests/TestUtil.h')
-rw-r--r-- | tests/TestUtil.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/TestUtil.h b/tests/TestUtil.h index 87a910d9..5b0741b8 100644 --- a/tests/TestUtil.h +++ b/tests/TestUtil.h @@ -5,8 +5,6 @@ #include <QTest> #include <QDir> -#include "MultiMC.h" - #include "test_config.h" class TestsInternal @@ -27,23 +25,3 @@ public: #define MULTIMC_GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA(file)) #define MULTIMC_GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA(file)) -#ifdef Q_OS_LINUX -#define _MMC_EXTRA_ARGV , "-platform", "offscreen" -#define _MMC_EXTRA_ARGC 2 -#else -#define _MMC_EXTRA_ARGV -#define _MMC_EXTRA_ARGC 0 -#endif - - - -#define QTEST_GUILESS_MAIN_MULTIMC(TestObject) \ -int main(int argc, char *argv[]) \ -{ \ - const char *argv_[] = { argv[0] _MMC_EXTRA_ARGV }; \ - int argc_ = 1 + _MMC_EXTRA_ARGC; \ - MultiMC app(argc_, const_cast<char**>(argv_), true); \ - app.setAttribute(Qt::AA_Use96Dpi, true); \ - TestObject tc; \ - return QTest::qExec(&tc, argc, argv); \ -} |