mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-08 01:25:24 +02:00
11 lines
214 B
C++
11 lines
214 B
C++
![]() |
#include <QApplication>
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
a.processEvents();
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|