| 85 | requests[9].headers["Accept-Encoding"] = ","; |
| 86 | |
| 87 | foreach (const http::Request& request, requests) { |
| 88 | EXPECT_FALSE(request.acceptsEncoding("gzip")) |
| 89 | << "Gzip encoding is unacceptable for 'Accept-Encoding: " |
| 90 | << request.headers.get("Accept-Encoding").get() << "'"; |
| 91 | } |
| 92 | |
| 93 | // Create requests that accept gzip encoding. |
| 94 | vector<http::Request> gzipRequests(12); |
nothing calls this directly
no test coverage detected