diff options
Diffstat (limited to 'Tests/acceptance/features/bootstrap/AdminContext.php')
-rw-r--r-- | Tests/acceptance/features/bootstrap/AdminContext.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tests/acceptance/features/bootstrap/AdminContext.php b/Tests/acceptance/features/bootstrap/AdminContext.php new file mode 100644 index 000000000..aa4dced67 --- /dev/null +++ b/Tests/acceptance/features/bootstrap/AdminContext.php @@ -0,0 +1,23 @@ +<?php + +use Behat\Behat\Context\Context; +use Behat\Behat\Context\SnippetAcceptingContext; +use Behat\Gherkin\Node\PyStringNode; +use Behat\Gherkin\Node\TableNode; + +/** + * Defines application features from the specific context. + */ +class AdminContext implements Context, 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() + { + } +} |