File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 33# A library must not provide a composer.lock file
44composer.lock
55
6- features /demo_app /var /
6+ features /demo_app /var /
Original file line number Diff line number Diff line change 3939branches :
4040 except :
4141 - /.*\-dev$/
42+
Original file line number Diff line number Diff line change 5959 PHPCS_DISABLE_WARNING_OPTION=-n
6060endif
6161
62-
6362# # Project build (install and configure)
6463build : install configure
6564
@@ -93,7 +92,6 @@ behat-coverage: create-behat-coverage-directory
9392 composer required leanphp/behat-code-coverage
9493 ./vendor/bin/behat ${BEHAT_COLOR_OPTION} ${BEHAT_OUTPUT_STYLE_OPTION} --no-snippets --profile coverage
9594
96-
9795# Internal commands
9896create-coverage-directory :
9997 mkdir -p ${COVERAGE_DIRECTORY}
@@ -104,6 +102,5 @@ create-behat-coverage-directory:
104102create-reports-directory :
105103 mkdir -p ${REPORTS_DIRECTORY}
106104
107-
108105.PHONY : build install configure test test-technical test-functional codestyle coverage behat-coverage create-coverage-directory create-behat-coverage-directory create-reports-directory
109106.DEFAULT : build
Original file line number Diff line number Diff line change 1+ <?php
2+ namespace Tests \Functional \BehatContext ;
3+
4+ use Behat \Behat \Context \Context ;
5+
6+ /**
7+ * Defines application features from the specific context.
8+ */
9+ class FeatureContext implements Context
10+ {
11+ /**
12+ * Initializes context.
13+ *
14+ * Every scenario gets its own context instance.
15+ * You can also pass arbitrary arguments to the
16+ * context constructor through behat.yml.
17+ */
18+ public function __construct ()
19+ {
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments