test_main.cpp 263 B

12345678910
  1. #include <QCoreApplication>
  2. #include <QGuiApplication>
  3. #include <gtest/gtest.h>
  4. int main(int argc, char **argv) {
  5. qputenv("QT_QPA_PLATFORM", "offscreen");
  6. QGuiApplication app(argc, argv);
  7. ::testing::InitGoogleTest(&argc, argv);
  8. return RUN_ALL_TESTS();
  9. }