| 160 | }; |
| 161 | |
| 162 | std::shared_ptr<FileSource> ToFileSource(std::string json) { |
| 163 | return std::make_shared<FileSource>(Buffer::FromString(std::move(json))); |
| 164 | } |
| 165 | |
| 166 | // Mixin for additional JSON-specific tests, compatible with both format APIs. |
| 167 | template <typename T> |
no test coverage detected