@@ -68,7 +68,10 @@ public function testBlockStyle()
68
68
. PHP_EOL . PHP_EOL ;
69
69
// @codingStandardsIgnoreEnd
70
70
$ this ->assertMatchesRegularExpression (
71
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Block does not match output ' );
71
+ '/ ' . $ expected . '/ ' ,
72
+ $ this ->testOutput ->output ,
73
+ 'Block does not match output '
74
+ );
72
75
}
73
76
74
77
/**
@@ -130,7 +133,10 @@ public function testCommentStyle()
130
133
$ this ->magentoStyle ->comment ('test comment ' );
131
134
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+test comment\s+ ' . PHP_EOL . PHP_EOL ;
132
135
$ this ->assertMatchesRegularExpression (
133
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Comment does not match output ' );
136
+ '/ ' . $ expected . '/ ' ,
137
+ $ this ->testOutput ->output ,
138
+ 'Comment does not match output '
139
+ );
134
140
}
135
141
136
142
/**
@@ -143,7 +149,10 @@ public function testSuccessStyle()
143
149
$ this ->magentoStyle ->success ('test success message ' );
144
150
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . ' \[SUCCESS\] test success message\s+ ' . PHP_EOL . PHP_EOL ;
145
151
$ this ->assertMatchesRegularExpression (
146
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Success message does not match output ' );
152
+ '/ ' . $ expected . '/ ' ,
153
+ $ this ->testOutput ->output ,
154
+ 'Success message does not match output '
155
+ );
147
156
}
148
157
149
158
/**
@@ -156,7 +165,10 @@ public function testErrorStyle()
156
165
$ this ->magentoStyle ->error ('test error message ' );
157
166
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[ERROR\] test error message\s+ ' . PHP_EOL . PHP_EOL ;
158
167
$ this ->assertMatchesRegularExpression (
159
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Error message does not match output ' );
168
+ '/ ' . $ expected . '/ ' ,
169
+ $ this ->testOutput ->output ,
170
+ 'Error message does not match output '
171
+ );
160
172
}
161
173
162
174
/**
@@ -169,7 +181,10 @@ public function testWarningStyle()
169
181
$ this ->magentoStyle ->warning ('test warning message ' );
170
182
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[WARNING\] test warning message\s+ ' . PHP_EOL . PHP_EOL ;
171
183
$ this ->assertMatchesRegularExpression (
172
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Warning message does not match output ' );
184
+ '/ ' . $ expected . '/ ' ,
185
+ $ this ->testOutput ->output ,
186
+ 'Warning message does not match output '
187
+ );
173
188
}
174
189
175
190
/**
@@ -182,7 +197,10 @@ public function testNoteStyle()
182
197
$ this ->magentoStyle ->note ('test note message ' );
183
198
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[NOTE\] test note message\s+ ' . PHP_EOL . PHP_EOL ;
184
199
$ this ->assertMatchesRegularExpression (
185
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Note message does not match output ' );
200
+ '/ ' . $ expected . '/ ' ,
201
+ $ this ->testOutput ->output ,
202
+ 'Note message does not match output '
203
+ );
186
204
}
187
205
188
206
/**
@@ -195,7 +213,10 @@ public function testCautionStyle()
195
213
$ this ->magentoStyle ->caution ('test caution message ' );
196
214
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+! \[CAUTION\] test caution message\s+ ' . PHP_EOL . PHP_EOL ;
197
215
$ this ->assertMatchesRegularExpression (
198
- '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Caution message does not match output ' );
216
+ '/ ' . $ expected . '/ ' ,
217
+ $ this ->testOutput ->output ,
218
+ 'Caution message does not match output '
219
+ );
199
220
}
200
221
201
222
/**
0 commit comments