Skip to content

Commit d02c686

Browse files
authored
Merge pull request #650 from rodrigoprimo/test-coverage-interface-name-suffix
Generic/InterfaceNameSuffix: improve code coverage
2 parents 960262c + 2b7a230 commit d02c686

File tree

5 files changed

+33
-29
lines changed

5 files changed

+33
-29
lines changed

src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public function process(File $phpcsFile, $stackPtr)
4040
{
4141
$interfaceName = $phpcsFile->getDeclarationName($stackPtr);
4242
if ($interfaceName === null) {
43+
// Live coding or parse error. Bow out.
4344
return;
4445
}
4546

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
interface SomeNameInterface {}
4+
5+
interface MissingInterfaceSuffix {} // Error.
6+
7+
interface CaseOfSuffixIsNotEnforced_interFACE {}
8+
9+
interface
10+
/*comment*/
11+
InterfaceAnotherInvalidName
12+
extends
13+
AnotherInterface, \Countable {} // Error.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
// Intentional parse error (no interface name).
4+
// This should be the only test in this file.
5+
// Testing that the sniff is *not* triggered.
6+
7+
interface

src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.inc

-27
This file was deleted.

src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,21 @@ final class InterfaceNameSuffixUnitTest extends AbstractSniffUnitTest
2525
* The key of the array should represent the line number and the value
2626
* should represent the number of errors that should occur on that line.
2727
*
28+
* @param string $testFile The name of the test file.
29+
*
2830
* @return array<int, int>
2931
*/
30-
public function getErrorList()
32+
public function getErrorList($testFile='')
3133
{
32-
return [8 => 1];
34+
switch ($testFile) {
35+
case 'InterfaceNameSuffixUnitTest.1.inc':
36+
return [
37+
5 => 1,
38+
9 => 1,
39+
];
40+
default:
41+
return [];
42+
}
3343

3444
}//end getErrorList()
3545

0 commit comments

Comments
 (0)