| 25 | |
| 26 | namespace { |
| 27 | static std::span<const std::byte> stringToBytes(const std::string& str) { |
| 28 | return std::span<const std::byte>( |
| 29 | reinterpret_cast<const std::byte*>(str.data()), |
| 30 | str.size()); |
| 31 | } |
| 32 | |
| 33 | void expectParserResult( |
| 34 | const std::string& json, |
no test coverage detected