You are here

FeatureContext.php in Event 8

Namespace

Drupal

File

tests/behat/features/bootstrap/Drupal/FeatureContext.php
View source
<?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() {
  }

}

Classes

Namesort descending Description
FeatureContext FeatureContext class defines custom step definitions for Behat.