| 38 | } |
| 39 | |
| 40 | static SerializeData StringData(std::string_view str) |
| 41 | { |
| 42 | auto bytes = StringBytes(str); |
| 43 | return SerializeData{bytes.begin(), bytes.end()}; |
| 44 | } |
| 45 | |
| 46 | static void CheckPrefix(DatabaseBatch& batch, std::span<const std::byte> prefix, MockableData expected) |
| 47 | { |
no test coverage detected