| 12345678910 |
- #include <QCoreApplication>
- #include <QGuiApplication>
- #include <gtest/gtest.h>
- int main(int argc, char **argv) {
- qputenv("QT_QPA_PLATFORM", "offscreen");
- QGuiApplication app(argc, argv);
- ::testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
- }
|