#define CATCH_CONFIG_MAIN #include "catch.hpp" #include #include #include #include bool got_an_assert = false; std::string load_test_tile() { std::string path{"data/mapbox-streets-v6-14-8714-8017.mvt"}; std::ifstream stream{path, std::ios_base::in|std::ios_base::binary}; if (!stream.is_open()) { throw std::runtime_error{"could not open: '" + path + "'"}; } const std::string message{std::istreambuf_iterator(stream.rdbuf()), std::istreambuf_iterator()}; stream.close(); return message; }