-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathTwigTemplateExistsRuleTest.php
91 lines (85 loc) · 1.68 KB
/
TwigTemplateExistsRuleTest.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Symfony;
use PHPStan\Rules\Rule;
use PHPStan\Symfony\TwigEnvironmentResolver;
use PHPStan\Testing\RuleTestCase;
/**
* @extends RuleTestCase<TwigTemplateExistsRule>
*/
final class TwigTemplateExistsRuleTest extends RuleTestCase
{
protected function getRule(): Rule
{
return new TwigTemplateExistsRule(new TwigEnvironmentResolver(__DIR__ . '/twig_environment_loader.php'));
}
public function testGetArgument(): void
{
$this->analyse(
[
__DIR__ . '/ExampleTwigController.php',
],
[
[
'Twig template "bar.html.twig" does not exist.',
22,
],
[
'Twig template "bar.html.twig" does not exist.',
23,
],
[
'Twig template "bar.html.twig" does not exist.',
24,
],
[
'Twig template "bar.html.twig" does not exist.',
25,
],
[
'Twig template "bar.html.twig" does not exist.',
26,
],
[
'Twig template "bar.html.twig" does not exist.',
27,
],
[
'Twig template "bar.html.twig" does not exist.',
35,
],
[
'Twig template "bar.html.twig" does not exist.',
36,
],
[
'Twig template "bar.html.twig" does not exist.',
37,
],
[
'Twig template "bar.html.twig" does not exist.',
44,
],
[
'Twig template "bar.html.twig" does not exist.',
45,
],
[
'Twig template "bar.html.twig" does not exist.',
53,
],
[
'Twig template "bar.html.twig" does not exist.',
57,
],
[
'Twig template "bar.html.twig" does not exist.',
61,
],
[
'Twig template "baz.html.twig" does not exist.',
61,
],
]
);
}
}