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
4242.PHONY : deptrac
4343
4444infection : 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
4646.PHONY : infection
4747
4848phpunit : tools/phpunit
@@ -93,13 +93,13 @@ tools/deptrac:
9393 curl -Ls http://get.sensiolabs.de/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac
9494
9595tools/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
9797
9898tools/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
100100
101101tools/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
103103
104104tests/phar/tools/phpunit :
105105 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 1212 "@default": true,
1313 "IdenticalEqual": false,
1414 "NotIdenticalNotEqual": false,
15+ "OneZeroInteger": {
16+ "ignore": [
17+ "Zalas\\Injector\\PHPUnit\\Symfony\\Compiler\\Discovery\\ClassFinder::findClassInFile"
18+ ]
19+ },
1520 "ProtectedVisibility": {
1621 "ignore": [
1722 "Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::bootKernel",
1823 "Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::createKernel",
1924 "Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\SymfonyKernel::getKernelClass"
2025 ]
26+ },
27+ "ArrayItemRemoval": {
28+ "ignore": [
29+ "Zalas\\Injector\\PHPUnit\\Symfony\\Compiler\\Discovery\\PropertyDiscovery::__construct",
30+ "Zalas\\Injector\\PHPUnit\\TestListener\\ServiceInjectorListener::startTest"
31+ ]
2132 }
2233 }
2334}
Original file line number Diff line number Diff line change 1313
1414class TestKernel extends Kernel
1515{
16+ public function __construct (string $ environment , bool $ debug )
17+ {
18+ parent ::__construct ($ environment , $ debug );
19+ }
20+
1621 public function registerBundles ()
1722 {
1823 return [
Original file line number Diff line number Diff line change 55
66use Symfony \Component \Config \Loader \LoaderInterface ;
77use Symfony \Component \DependencyInjection \ContainerBuilder ;
8- use Symfony \Component \DependencyInjection \Reference ;
98use Symfony \Component \HttpKernel \Kernel ;
109use Zalas \Injector \PHPUnit \Symfony \Compiler \Discovery \ClassFinder ;
1110use Zalas \Injector \PHPUnit \Symfony \Compiler \Discovery \PropertyDiscovery ;
1514
1615class TestKernel extends Kernel
1716{
17+ public function __construct (string $ environment , bool $ debug )
18+ {
19+ parent ::__construct ($ environment , $ debug );
20+ }
21+
1822 public function registerBundles ()
1923 {
2024 return [];
You can’t perform that action at this time.
0 commit comments