blob: eb8f2b98f1c247aa3c1a81f4a3c2764d1cc8bcb6 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <gtest/gtest.h>
#include <QtWidgets>
int main(int argc, char** argv)
{
QApplication app(argc, argv);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|