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 3
3
# A library must not provide a composer.lock file
4
4
composer.lock
5
5
6
- features /demo_app /var /
6
+ features /demo_app /var /
Original file line number Diff line number Diff line change 39
39
branches :
40
40
except :
41
41
- /.*\-dev$/
42
+
Original file line number Diff line number Diff line change 59
59
PHPCS_DISABLE_WARNING_OPTION=-n
60
60
endif
61
61
62
-
63
62
# # Project build (install and configure)
64
63
build : install configure
65
64
@@ -93,7 +92,6 @@ behat-coverage: create-behat-coverage-directory
93
92
composer required leanphp/behat-code-coverage
94
93
./vendor/bin/behat ${BEHAT_COLOR_OPTION} ${BEHAT_OUTPUT_STYLE_OPTION} --no-snippets --profile coverage
95
94
96
-
97
95
# Internal commands
98
96
create-coverage-directory :
99
97
mkdir -p ${COVERAGE_DIRECTORY}
@@ -104,6 +102,5 @@ create-behat-coverage-directory:
104
102
create-reports-directory :
105
103
mkdir -p ${REPORTS_DIRECTORY}
106
104
107
-
108
105
.PHONY : build install configure test test-technical test-functional codestyle coverage behat-coverage create-coverage-directory create-behat-coverage-directory create-reports-directory
109
106
.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