ticket-8.x-1.x-dev/tests/behat/features/bootstrap/Drupal/FeatureContext.php
tests/behat/features/bootstrap/Drupal/FeatureContext.php
<?php
namespace Drupal;
use Drupal\DrupalExtension\Context\RawDrupalContext;
use Behat\Behat\Context\SnippetAcceptingContext;
/**
* FeatureContext class defines custom step definitions for Behat.
*/
class FeatureContext extends RawDrupalContext implements SnippetAcceptingContext {
/**
* Initializes context.
*
* Every scenario gets its own context instance.
* You can also pass arbitrary arguments to the
* context constructor through behat.yml.
*/
public function __construct() {
}
}
