summaryrefslogtreecommitdiff
path: root/tests/unit/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/main.cpp')
-rw-r--r--tests/unit/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit/main.cpp b/tests/unit/main.cpp
new file mode 100644
index 0000000..eb8f2b9
--- /dev/null
+++ b/tests/unit/main.cpp
@@ -0,0 +1,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();
+}