class FunctionalTestCase extends WebTestCase
{
protected $environment = 'testing';
public function testFoo()
{
$this->assertTrue(true);
}
}
### Expected result
The test should pass or at least should be failing with a proper error message or deprecation warning
### Actual result
test fail with `You have requested a non-existent parameter "secret".` error message.
Preconditions
Steps to reproduce
use Liip\FunctionalTestBundle\Test\WebTestCase;
class FunctionalTestCase extends WebTestCase { protected $environment = 'testing';
}