fosuserbundle、liipfunctionalTestBundle、HWIOAuthBundle と一緒に symfony 2.8.3 を使用しています。私のテストコード
$client = static::makeClient(true);
// request of any other url is getting the same error
$crawler = $client->request('GET', '/login');
$this->assertStatusCode(302, $client);
$client->followRedirect();
$this->assertStatusCode(200, $client);
このコードは、「セッションの開始後にセッション ID を設定できません」というエラーを常に受け取ります。しかし、HWIOAuthBundle を無効にすると、テストは正常に機能します。何か案は?