-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathExplicitExpectsMockMethodRuleTest.php
More file actions
38 lines (31 loc) · 1.06 KB
/
ExplicitExpectsMockMethodRuleTest.php
File metadata and controls
38 lines (31 loc) · 1.06 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
<?php
declare(strict_types=1);
namespace Symplify\PHPStanRules\Tests\Rules\PHPUnit\ExplicitExpectsMockMethodRule;
use Iterator;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use Symplify\PHPStanRules\Rules\PHPUnit\ExplicitExpectsMockMethodRule;
final class ExplicitExpectsMockMethodRuleTest 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/MockWithoutExpectsTest.php', [[ExplicitExpectsMockMethodRule::ERROR_MESSAGE, 12]]];
yield [__DIR__ . '/Fixture/SkipMockWithExpectsTest.php', []];
}
protected function getRule(): Rule
{
return new ExplicitExpectsMockMethodRule();
}
}