1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-03 23:25:28 +02:00
jami-client-qt/tests/unittests/main_unittest.cpp

55 lines
1.6 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2021 by Savoir-faire Linux
* Author: Albert Babí Oller <albert.babi@savoirfairelinux.com>
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "globaltestenvironment.h"
#include <QApplication>
#include <QStandardPaths>
TestEnvironment globalEnv;
int
main(int argc, char* argv[])
{
// Remove "-mutejami" from argv, as quick_test_main_with_setup() will
// fail if given an invalid command-line argument.
auto end = std::remove_if(argv + 1, argv + argc, [](char* argv) {
return (strcmp(argv, "-mutejami") == 0);
});
if (end != argv + argc) {
globalEnv.muteDring = true;
// Adjust the argument count.
argc = std::distance(argv, end);
}
QStandardPaths::setTestModeEnabled(true);
QApplication a(argc, argv);
a.processEvents();
::testing::InitGoogleTest(&argc, argv);
globalEnv.SetUp();
auto result = RUN_ALL_TESTS();
globalEnv.TearDown();
return result;
}