-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCheckRequiredInterfaceInContractNamespaceRuleTest.php
More file actions
48 lines (41 loc) · 1.44 KB
/
CheckRequiredInterfaceInContractNamespaceRuleTest.php
File metadata and controls
48 lines (41 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
declare(strict_types=1);
namespace Symplify\PHPStanRules\Tests\Rules\CheckRequiredInterfaceInContractNamespaceRule;
use Iterator;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use Symplify\PHPStanRules\Rules\CheckRequiredInterfaceInContractNamespaceRule;
final class CheckRequiredInterfaceInContractNamespaceRuleTest extends RuleTestCase
{
/**
* @param array<int, array<string|int>> $expectedErrorsWithLines
*/
#[DataProvider('provideData')]
public function testRule(string $filePath, array $expectedErrorsWithLines): void
{
$this->analyse([$filePath], $expectedErrorsWithLines);
}
/**
* @return Iterator<array<array<int, mixed>, mixed>>
*/
public static function provideData(): Iterator
{
yield [__DIR__ . '/Fixture/Contract/SkipInterfaceInContract.php', []];
yield [__DIR__ . '/Fixture/Illuminate/Contracts/View/View.php', []];
yield [
__DIR__ . '/Fixture/AnInterfaceNotInContract.php',
[[CheckRequiredInterfaceInContractNamespaceRule::ERROR_MESSAGE, 7]], ];
}
/**
* @return string[]
*/
public static function getAdditionalConfigFiles(): array
{
return [__DIR__ . '/config/configured_rule.neon'];
}
protected function getRule(): Rule
{
return self::getContainer()->getByType(CheckRequiredInterfaceInContractNamespaceRule::class);
}
}