ScreenTranslator/tests/main.cpp

11 lines
194 B
C++
Raw Normal View History

2020-03-27 23:36:06 +07:00
#include <QCoreApplication>
#include <gtest/gtest.h>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}