| 115 | } |
| 116 | |
| 117 | TestEngine::TestResponse TestStaticCompressed::getForcedFile(const QString &path, |
| 118 | const Headers &headers) |
| 119 | { |
| 120 | const Headers hdrs = headers.data().empty() |
| 121 | ? Headers({{"Accept-Encoding", "gzip, deflate, br, zstd"}}) |
| 122 | : headers; |
| 123 | return m_engineDirsOnly->createRequest("GET", path, {}, hdrs, nullptr); |
| 124 | } |
| 125 | |
| 126 | bool TestStaticCompressed::writeTestFile(const QString &name) |
| 127 | { |
nothing calls this directly
no test coverage detected