| 277 | using Check = bool (Document::*)() const; |
| 278 | |
| 279 | struct ParseTest { |
| 280 | std::string data; |
| 281 | Check check; |
| 282 | bool has_error; |
| 283 | }; |
| 284 | constexpr static bool kNoError = false; |
| 285 | constexpr static bool kError = true; |
| 286 | std::vector<ParseTest> tests = { |
nothing calls this directly
no outgoing calls
no test coverage detected