Skip to content

Commit 0b67d68

Browse files
authored
Merge pull request #539 from biinari/chore/143-Generic_SpreadOperatorSpacingAfter_separate_parse_error
Generic/SpreadOperatorSpacingAfter: move parse error test to its own file
2 parents 27678e7 + 530e7ab commit 0b67d68

4 files changed

+24
-18
lines changed

src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.inc src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.1.inc

-3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,3 @@ $map = array_map(strtolower(...), $map);
7474

7575
// Ignore PHP 8.1 first class callable declarations.
7676
$map = array_map(strtolower( ... ), $map);
77-
78-
// Intentional parse error. This has to be the last test in the file.
79-
function bar( ...

src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.inc.fixed src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.1.inc.fixed

-3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,3 @@ $map = array_map(strtolower(...), $map);
6969

7070
// Ignore PHP 8.1 first class callable declarations.
7171
$map = array_map(strtolower( ... ), $map);
72-
73-
// Intentional parse error. This has to be the last test in the file.
74-
function bar( ...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
3+
// Intentional parse error. Testing that the sniff is *not* triggered in this case.
4+
function bar( ...

src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.php

+20-12
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,29 @@ final class SpreadOperatorSpacingAfterUnitTest extends AbstractSniffUnitTest
2626
* The key of the array should represent the line number and the value
2727
* should represent the number of errors that should occur on that line.
2828
*
29+
* @param string $testFile The name of the file being tested.
30+
*
2931
* @return array<int, int>
3032
*/
31-
public function getErrorList()
33+
public function getErrorList($testFile='')
3234
{
33-
return [
34-
12 => 1,
35-
13 => 1,
36-
20 => 2,
37-
40 => 1,
38-
41 => 1,
39-
46 => 2,
40-
60 => 1,
41-
61 => 1,
42-
66 => 2,
43-
];
35+
switch ($testFile) {
36+
case 'SpreadOperatorSpacingAfterUnitTest.1.inc':
37+
return [
38+
12 => 1,
39+
13 => 1,
40+
20 => 2,
41+
40 => 1,
42+
41 => 1,
43+
46 => 2,
44+
60 => 1,
45+
61 => 1,
46+
66 => 2,
47+
];
48+
49+
default:
50+
return [];
51+
}//end switch
4452

4553
}//end getErrorList()
4654

0 commit comments

Comments
 (0)