We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94c02a5 + 618a34e commit 7aee52cCopy full SHA for 7aee52c
1 file changed
README.md
@@ -344,6 +344,18 @@ protected static function getServerParameters()
344
}
345
```
346
347
+Note: this assumes you have enabled `http_basic` in your security configuration using this setting in the `config_test.yml` file:
348
+
349
+```yaml
350
+# app/config/config_test.yml
351
+security:
352
+ firewalls:
353
+ your_firewall_name:
354
+ http_basic:
355
+```
356
357
+See [How to simulate HTTP Authentication in a Functional Test](http://symfony.com/doc/current/cookbook/testing/http_authentication.html) for details
358
359
### Changing Client initialization
360
361
Oftentimes, overriding `createClient` is enough. Whenever you need more
0 commit comments