| 5362 | |
| 5363 | #if ADA_TESTING |
| 5364 | friend void PrintTo(const url_pattern& c, std::ostream* os) { |
| 5365 | *os << "protocol_component: '" << c.get_protocol() << ", "; |
| 5366 | *os << "username_component: '" << c.get_username() << ", "; |
| 5367 | *os << "password_component: '" << c.get_password() << ", "; |
| 5368 | *os << "hostname_component: '" << c.get_hostname() << ", "; |
| 5369 | *os << "port_component: '" << c.get_port() << ", "; |
| 5370 | *os << "pathname_component: '" << c.get_pathname() << ", "; |
| 5371 | *os << "search_component: '" << c.get_search() << ", "; |
| 5372 | *os << "hash_component: '" << c.get_hash(); |
| 5373 | } |
| 5374 | #endif // ADA_TESTING |
| 5375 | |
| 5376 | template <url_pattern_regex::regex_concept P> |
nothing calls this directly
no test coverage detected