Lines Matching full:url
35 constexpr std::string_view url = "/foo"; in TEST() local
37 Request req{{boost::beast::http::verb::get, url, 11}, ec}; in TEST()
44 router.newRuleTagged<getParameterTag(url)>(std::string(url)) in TEST()
50 Request patchReq{{boost::beast::http::verb::patch, url, 11}, ec}; in TEST()
53 router.newRuleTagged<getParameterTag(url)>(std::string(url)) in TEST()
84 constexpr std::string_view url = "/foo/bar"; in TEST() local
87 Request::Body{boost::beast::http::verb::get, url, 11}, ec); in TEST()
110 constexpr std::string_view url = "/foo/bar"; variable
113 Request::Body{boost::beast::http::verb::get, url, 11}, ec);
115 router.newRuleTagged<getParameterTag(url)>("/foo/<path>")
141 constexpr std::string_view url = "/foo/bar"; variable
144 Request::Body{boost::beast::http::verb::patch, url, 11}, ec);
146 router.newRuleTagged<getParameterTag(url)>(std::string(url))
148 router.newRuleTagged<getParameterTag(url)>("/foo/<path>")