mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-01 01:38:23 +00:00
This allow to create authenticated client with :
```
use Chill\MainBundle\Tests\TestHelper as MainTestHelper;
class XYZTest extens WebTestCase {
public function testABC()
{
$client = static::createClient(array(),
MainTestHelper::getAuthenticatedClientOptions()
);
//...
}
}
```