for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Behat\Behat\Context\Context;
use Behat\MinkExtension\Context\MinkContext;
use Behat\Symfony2Extension\Context\KernelAwareContext;
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
/**
* Defines application features from the specific context.
*/
class FeatureContext extends MinkContext implements Context, KernelAwareContext
{
use Behat\Symfony2Extension\Context\KernelDictionary;
/** @BeforeScenario */
public function before(BeforeScenarioScope $scope)
$scope
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->setMinkParameter('base_url', $this->getContainer()->getParameter('base_url'));
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.