| 107 | } |
| 108 | |
| 109 | TestEngine::TestResponse TestStaticCompressed::getFile(const QString &path, const Headers &headers) |
| 110 | { |
| 111 | const Headers hdrs = headers.data().empty() |
| 112 | ? Headers({{"Accept-Encoding", "gzip, deflate, br, zstd"}}) |
| 113 | : headers; |
| 114 | return m_engine->createRequest("GET", path, {}, hdrs, nullptr); |
| 115 | } |
| 116 | |
| 117 | TestEngine::TestResponse TestStaticCompressed::getForcedFile(const QString &path, |
| 118 | const Headers &headers) |
nothing calls this directly
no test coverage detected