summaryrefslogtreecommitdiffstatshomepage
path: root/tests/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
new file mode 100644
index 00000000000..a3ba19293f9
--- /dev/null
+++ b/tests/main.cpp
@@ -0,0 +1,12 @@
+// license:BSD-3-Clause
+// copyright-holders:Miodrag Milanovic
+
+#include <stdio.h>
+#include "gtest/gtest.h"
+
+int main(int argc, char **argv)
+{
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
+