public function __construct($parameters)
 {
     parent::__construct($parameters);
 }
 /**
  * Initializes context with parameters from behat.yml.
  *
  * @param Kernel $kernel Symfony kernel
  */
 public function __construct($kernel)
 {
     parent::__construct($kernel);
     $this->kernel = $kernel;
     $this->registry = new Registry();
 }
Example #3
0
 public function __construct($kernel)
 {
     $this->useContext('symfony_doctrine', new \Behat\CommonContext\SymfonyDoctrineContext($kernel));
     parent::__construct($kernel);
 }