diff --git a/build/acceptance/composer.json b/build/acceptance/composer.json new file mode 100644 index 00000000000..a361adaa40d --- /dev/null +++ b/build/acceptance/composer.json @@ -0,0 +1,9 @@ +{ + "require-dev": { + "behat/behat": "^3.0", + "behat/mink": "^1.5", + "behat/mink-extension": "*", + "behat/mink-selenium2-driver": "*", + "phpunit/phpunit": "~4.6" + } +} diff --git a/build/acceptance/config/behat.yml b/build/acceptance/config/behat.yml new file mode 100644 index 00000000000..01feef51608 --- /dev/null +++ b/build/acceptance/config/behat.yml @@ -0,0 +1,14 @@ +default: + autoload: + '': %paths.base%/../features/bootstrap + suites: + default: + paths: + - %paths.base%/../features + contexts: + - FeatureContext + extensions: + Behat\MinkExtension: + sessions: + default: + selenium2: ~ diff --git a/build/acceptance/features/bootstrap/FeatureContext.php b/build/acceptance/features/bootstrap/FeatureContext.php new file mode 100644 index 00000000000..b309a7e04b0 --- /dev/null +++ b/build/acceptance/features/bootstrap/FeatureContext.php @@ -0,0 +1,28 @@ +. + * + */ + +use Behat\Behat\Context\Context; + +class FeatureContext implements Context { + +}