Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / doc / _static / snippets / FeatureContext.php.inc
diff --git a/vendor/drupal/drupal-extension/doc/_static/snippets/FeatureContext.php.inc b/vendor/drupal/drupal-extension/doc/_static/snippets/FeatureContext.php.inc
new file mode 100644 (file)
index 0000000..66d6136
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+use Behat\Behat\Tester\Exception\PendingException;
+use Drupal\DrupalExtension\Context\RawDrupalContext;
+use Behat\Behat\Context\SnippetAcceptingContext;
+use Behat\Gherkin\Node\PyStringNode;
+use Behat\Gherkin\Node\TableNode;
+
+/**
+ * Defines application features from the specific context.
+ */
+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() {
+  }
+}