| 279 | |
| 280 | |
| 281 | AuthenticationResult createUnauthorized(const MockAuthenticator& authenticator) |
| 282 | { |
| 283 | AuthenticationResult result; |
| 284 | result.unauthorized = Unauthorized( |
| 285 | {authenticator.scheme() + " realm=\"" + REALM + "\""}, |
| 286 | authenticator.scheme() + " unauthorized"); |
| 287 | |
| 288 | return result; |
| 289 | } |
| 290 | |
| 291 | |
| 292 | AuthenticationResult createForbidden(MockAuthenticator& authenticator) |
no test coverage detected