ScreenTranslator/tests/main.cpp
2020-04-20 20:46:28 +03:00

11 lines
194 B
C++

#include <QCoreApplication>
#include <gtest/gtest.h>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}