File tree Expand file tree Collapse file tree 4 files changed +25
-5
lines changed
tests/Symfony/TestCase/Fixtures Expand file tree Collapse file tree 4 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ deptrac: tools/deptrac
42
42
.PHONY : deptrac
43
43
44
44
infection : tools/infection tools/infection.pubkey
45
- phpdbg -qrr ./tools/infection --no-interaction --formatter=progress --min-msi=96 --min-covered-msi=96 --only-covered --ansi
45
+ phpdbg -qrr ./tools/infection --no-interaction --formatter=progress --min-msi=100 --min-covered-msi=100 --only-covered --ansi
46
46
.PHONY : infection
47
47
48
48
phpunit : tools/phpunit
@@ -93,13 +93,13 @@ tools/deptrac:
93
93
curl -Ls http://get.sensiolabs.de/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac
94
94
95
95
tools/infection : tools/infection.pubkey
96
- curl -Ls https://github.com/infection/infection/releases/download/0.12.0 /infection.phar -o tools/infection && chmod +x tools/infection
96
+ curl -Ls https://github.com/infection/infection/releases/download/0.13.2 /infection.phar -o tools/infection && chmod +x tools/infection
97
97
98
98
tools/infection.pubkey :
99
- curl -Ls https://github.com/infection/infection/releases/download/0.12.0 /infection.phar.pubkey -o tools/infection.pubkey
99
+ curl -Ls https://github.com/infection/infection/releases/download/0.13.2 /infection.phar.pubkey -o tools/infection.pubkey
100
100
101
101
tools/box :
102
- curl -Ls https://github.com/humbug/box/releases/download/3.4.0 /box.phar -o tools/box && chmod +x tools/box
102
+ curl -Ls https://github.com/humbug/box/releases/download/3.7.3 /box.phar -o tools/box && chmod +x tools/box
103
103
104
104
tests/phar/tools/phpunit :
105
105
curl -Ls https://phar.phpunit.de/phpunit-8.phar -o tests/phar/tools/phpunit && chmod +x tests/phar/tools/phpunit
Original file line number Diff line number Diff line change 12
12
"@default": true,
13
13
"IdenticalEqual": false,
14
14
"NotIdenticalNotEqual": false,
15
+ "OneZeroInteger": {
16
+ "ignore": [
17
+ "Zalas\\Injector\\PHPUnit\\Symfony\\Compiler\\Discovery\\ClassFinder::findClassInFile"
18
+ ]
19
+ },
15
20
"ProtectedVisibility": {
16
21
"ignore": [
17
22
"Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::bootKernel",
18
23
"Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::createKernel",
19
24
"Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::getKernelClass"
20
25
]
26
+ },
27
+ "ArrayItemRemoval": {
28
+ "ignore": [
29
+ "Zalas\\Injector\\PHPUnit\\Symfony\\Compiler\\Discovery\\PropertyDiscovery::__construct",
30
+ "Zalas\\Injector\\PHPUnit\\TestListener\\ServiceInjectorListener::startTest"
31
+ ]
21
32
}
22
33
}
23
34
}
Original file line number Diff line number Diff line change 13
13
14
14
class TestKernel extends Kernel
15
15
{
16
+ public function __construct (string $ environment , bool $ debug )
17
+ {
18
+ parent ::__construct ($ environment , $ debug );
19
+ }
20
+
16
21
public function registerBundles ()
17
22
{
18
23
return [
Original file line number Diff line number Diff line change 5
5
6
6
use Symfony \Component \Config \Loader \LoaderInterface ;
7
7
use Symfony \Component \DependencyInjection \ContainerBuilder ;
8
- use Symfony \Component \DependencyInjection \Reference ;
9
8
use Symfony \Component \HttpKernel \Kernel ;
10
9
use Zalas \Injector \PHPUnit \Symfony \Compiler \Discovery \ClassFinder ;
11
10
use Zalas \Injector \PHPUnit \Symfony \Compiler \Discovery \PropertyDiscovery ;
15
14
16
15
class TestKernel extends Kernel
17
16
{
17
+ public function __construct (string $ environment , bool $ debug )
18
+ {
19
+ parent ::__construct ($ environment , $ debug );
20
+ }
21
+
18
22
public function registerBundles ()
19
23
{
20
24
return [];
You can’t perform that action at this time.
0 commit comments