@@ -67,7 +67,8 @@ public function testBlockStyle()
67
67
. PHP_EOL . '\<testBlockStyle\>testBlockPrefix \s+ test second message\s+ '
68
68
. PHP_EOL . PHP_EOL ;
69
69
// @codingStandardsIgnoreEnd
70
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Block does not match output ' );
70
+ $ this ->assertMatchesRegularExpression (
71
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Block does not match output ' );
71
72
}
72
73
73
74
/**
@@ -128,7 +129,8 @@ public function testCommentStyle()
128
129
{
129
130
$ this ->magentoStyle ->comment ('test comment ' );
130
131
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+test comment\s+ ' . PHP_EOL . PHP_EOL ;
131
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Comment does not match output ' );
132
+ $ this ->assertMatchesRegularExpression (
133
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Comment does not match output ' );
132
134
}
133
135
134
136
/**
@@ -140,7 +142,8 @@ public function testSuccessStyle()
140
142
{
141
143
$ this ->magentoStyle ->success ('test success message ' );
142
144
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . ' \[SUCCESS\] test success message\s+ ' . PHP_EOL . PHP_EOL ;
143
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Success message does not match output ' );
145
+ $ this ->assertMatchesRegularExpression (
146
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Success message does not match output ' );
144
147
}
145
148
146
149
/**
@@ -152,7 +155,8 @@ public function testErrorStyle()
152
155
{
153
156
$ this ->magentoStyle ->error ('test error message ' );
154
157
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[ERROR\] test error message\s+ ' . PHP_EOL . PHP_EOL ;
155
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Error message does not match output ' );
158
+ $ this ->assertMatchesRegularExpression (
159
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Error message does not match output ' );
156
160
}
157
161
158
162
/**
@@ -164,7 +168,8 @@ public function testWarningStyle()
164
168
{
165
169
$ this ->magentoStyle ->warning ('test warning message ' );
166
170
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[WARNING\] test warning message\s+ ' . PHP_EOL . PHP_EOL ;
167
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Warning message does not match output ' );
171
+ $ this ->assertMatchesRegularExpression (
172
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Warning message does not match output ' );
168
173
}
169
174
170
175
/**
@@ -176,7 +181,8 @@ public function testNoteStyle()
176
181
{
177
182
$ this ->magentoStyle ->note ('test note message ' );
178
183
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+\[NOTE\] test note message\s+ ' . PHP_EOL . PHP_EOL ;
179
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Note message does not match output ' );
184
+ $ this ->assertMatchesRegularExpression (
185
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Note message does not match output ' );
180
186
}
181
187
182
188
/**
@@ -188,7 +194,8 @@ public function testCautionStyle()
188
194
{
189
195
$ this ->magentoStyle ->caution ('test caution message ' );
190
196
$ expected = PHP_EOL . PHP_EOL . PHP_EOL . '\s+! \[CAUTION\] test caution message\s+ ' . PHP_EOL . PHP_EOL ;
191
- $ this ->assertMatchesRegularExpression ('/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Caution message does not match output ' );
197
+ $ this ->assertMatchesRegularExpression (
198
+ '/ ' . $ expected . '/ ' , $ this ->testOutput ->output , 'Caution message does not match output ' );
192
199
}
193
200
194
201
/**
0 commit comments