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()
);
//...
}
}
```