summaryrefslogtreecommitdiff
path: root/expression-test/test_runner_common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'expression-test/test_runner_common.hpp')
-rw-r--r--expression-test/test_runner_common.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/expression-test/test_runner_common.hpp b/expression-test/test_runner_common.hpp
new file mode 100644
index 0000000000..b30d1a145c
--- /dev/null
+++ b/expression-test/test_runner_common.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <mbgl/util/feature.hpp>
+
+#include <string>
+#include <vector>
+
+using namespace mbgl;
+
+Value stripPrecision(const Value& value);
+std::vector<std::string> tokenize(std::string str);
+bool deepEqual(const Value& a, const Value& b);
+bool deepEqual(const optional<Value>& a, const optional<Value>& b);