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 | |
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')
-rw-r--r-- | Tests/acceptance/features/bootstrap/AdminContext.php | 23 | ||||
-rw-r--r-- | Tests/acceptance/features/bootstrap/ApiContext.php | 23 | ||||
-rw-r--r-- | Tests/acceptance/features/bootstrap/FeatureContext.php | 23 |
3 files changed, 69 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() + { + } +} 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() + { + } +} diff --git a/Tests/acceptance/features/bootstrap/FeatureContext.php b/Tests/acceptance/features/bootstrap/FeatureContext.php new file mode 100644 index 000000000..2ec02da85 --- /dev/null +++ b/Tests/acceptance/features/bootstrap/FeatureContext.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 FeatureContext 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() + { + } +} |