summaryrefslogtreecommitdiff
path: root/test/src/mbgl/test/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/mbgl/test/test.cpp')
-rw-r--r--test/src/mbgl/test/test.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/src/mbgl/test/test.cpp b/test/src/mbgl/test/test.cpp
new file mode 100644
index 0000000000..cbc6cfb102
--- /dev/null
+++ b/test/src/mbgl/test/test.cpp
@@ -0,0 +1,11 @@
+#include <mbgl/test.hpp>
+#include <gtest/gtest.h>
+
+namespace mbgl {
+
+int runTests(int argc, char *argv[]) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
+
+}