summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-03-24 15:28:13 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-14 14:18:19 -0700
commit7de9e196d776e5be972d2e75fc5b290b5e01b33c (patch)
tree5cded3a4044356581967f99238902dbc7ed50535 /test/src
parent3af3e72bb3cb3f05b33be304d59e66cc244ef4d9 (diff)
downloadqtlocation-mapboxgl-7de9e196d776e5be972d2e75fc5b290b5e01b33c.tar.gz
[tests] Rationalize storage tests
Properly divide Storage tests into DefaultFileSource, OnlineFileSource, and HTTPFileSource tests.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/mbgl/test/test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/src/mbgl/test/test.cpp b/test/src/mbgl/test/test.cpp
index cbc6cfb102..37447f9d94 100644
--- a/test/src/mbgl/test/test.cpp
+++ b/test/src/mbgl/test/test.cpp
@@ -1,9 +1,12 @@
#include <mbgl/test.hpp>
+#include <mbgl/test/util.hpp>
+
#include <gtest/gtest.h>
namespace mbgl {
int runTests(int argc, char *argv[]) {
+ auto server = std::make_unique<test::Server>("test/storage/server.js");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}