/srv/osrm/osrm-backend/third_party/protozero/test/unit
NameSizeModeActions
CMakeLists.txt6500644editdlrm
main.cpp690644editdlrm
test_basic.cpp63390644editdlrm
test_buffer.cpp15860644editdlrm
test_data_view.cpp43640644editdlrm
test_endian.cpp20140644editdlrm
test_exceptions.cpp10830644editdlrm
test_iterators.cpp5010644editdlrm
test_varint.cpp73280644editdlrm
test_zigzag.cpp59720644editdlrm
Edit: /srv/osrm/osrm-backend/third_party/protozero/test/unit/test_exceptions.cpp (1083B)
#include TEST_CASE("exceptions messages for pbf exception") { protozero::exception e; REQUIRE(std::string{e.what()} == std::string{"pbf exception"}); } TEST_CASE("exceptions messages for varint too long") { protozero::varint_too_long_exception e; REQUIRE(std::string{e.what()} == std::string{"varint too long exception"}); } TEST_CASE("exceptions messages for unknown pbf field type") { protozero::unknown_pbf_wire_type_exception e; REQUIRE(std::string{e.what()} == std::string{"unknown pbf field type exception"}); } TEST_CASE("exceptions messages for end of buffer") { protozero::end_of_buffer_exception e; REQUIRE(std::string{e.what()} == std::string{"end of buffer exception"}); } TEST_CASE("exceptions messages for invalid tag") { protozero::invalid_tag_exception e; REQUIRE(std::string{e.what()} == std::string{"invalid tag exception"}); } TEST_CASE("exceptions messages for invalid length") { protozero::invalid_length_exception e; REQUIRE(std::string{e.what()} == std::string{"invalid length exception"}); }