aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/acceptance/features/bootstrap/AdminContext.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-26 08:43:03 +0000
committerMario <mario@mariovavti.com>2020-11-26 08:43:03 +0000
commit21cd4a1b4845858c3421dbd5f2673eceee421f5d (patch)
tree56d80b7e16f99d8037e8ff48431aa9d191ff39dd /Tests/acceptance/features/bootstrap/AdminContext.php
parente9a50371f5dd4cffb0ba4894f2286b28e8f535b9 (diff)
downloadvolse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.tar.gz
volse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.tar.bz2
volse-hubzilla-21cd4a1b4845858c3421dbd5f2673eceee421f5d.zip
psr-4 autoloading standard
Diffstat (limited to 'Tests/acceptance/features/bootstrap/AdminContext.php')
-rw-r--r--Tests/acceptance/features/bootstrap/AdminContext.php23
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()
+ {
+ }
+}