mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-03 07:05:26 +02:00

Automated via the following command: $ git grep -l dring | grep -v '.ts$' | xargs sed -i 's/dring/jamid/g' $ git ls-files | xargs sed -i 's,bin/jamid.lib,bin/jami.lib,g' $ git ls-files | xargs sed -i 's,src/jamid,src/jami,g' $ git ls-files | xargs sed -i 's,-mutejamid,-mutejami,g' $ git checkout docker Change-Id: I030209b60817372f866055daadb4d0a1c1e2e9df
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/*
|
|
* 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;
|
|
}
|