aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/SetupContext.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/bootstrap/SetupContext.php')
-rw-r--r--build/integration/features/bootstrap/SetupContext.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/build/integration/features/bootstrap/SetupContext.php b/build/integration/features/bootstrap/SetupContext.php
new file mode 100644
index 00000000000..aa131cec597
--- /dev/null
+++ b/build/integration/features/bootstrap/SetupContext.php
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+use Behat\Behat\Context\Context;
+
+require __DIR__ . '/../../vendor/autoload.php';
+
+
+/**
+ * Setup context.
+ */
+class SetupContext implements Context {
+ use BasicStructure;
+}