diff options
author | Mario <mario@mariovavti.com> | 2020-11-26 08:43:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-26 08:43:03 +0000 |
commit | 21cd4a1b4845858c3421dbd5f2673eceee421f5d (patch) | |
tree | 56d80b7e16f99d8037e8ff48431aa9d191ff39dd /Tests/acceptance/features/bootstrap/ApiContext.php | |
parent | e9a50371f5dd4cffb0ba4894f2286b28e8f535b9 (diff) | |
download | volse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.tar.gz volse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.tar.bz2 volse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.zip |
psr-4 autoloading standard
Diffstat (limited to 'Tests/acceptance/features/bootstrap/ApiContext.php')
-rw-r--r-- | Tests/acceptance/features/bootstrap/ApiContext.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tests/acceptance/features/bootstrap/ApiContext.php b/Tests/acceptance/features/bootstrap/ApiContext.php new file mode 100644 index 000000000..9b772b209 --- /dev/null +++ b/Tests/acceptance/features/bootstrap/ApiContext.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 ApiContext 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() + { + } +} |