File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ phpmetrics.json export-ignore
2727phpstan-baseline.php export-ignore
2828phpstan-bootstrap.php export-ignore
2929phpstan.neon.dist export-ignore
30- phpunit.xml. dist export-ignore
30+ phpunit.dist.xml export-ignore
3131psalm-baseline.xml export-ignore
3232psalm.xml export-ignore
3333psalm_autoload.php export-ignore
Original file line number Diff line number Diff line change @@ -127,6 +127,6 @@ _modules/*
127127.vscode /
128128
129129/results /
130- /phpunit * .xml
130+ /phpunit.xml
131131
132132/.php-cs-fixer.php
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit
33 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4- xsi : noNamespaceSchemaLocation =" https://schema. phpunit.de/10.5 /phpunit.xsd"
4+ xsi : noNamespaceSchemaLocation =" vendor/ phpunit/phpunit /phpunit.xsd"
55 bootstrap =" system/Test/bootstrap.php"
66 backupGlobals =" false"
77 beStrictAboutOutputDuringTests =" true"
1212 failOnRisky =" true"
1313 failOnWarning =" true"
1414>
15- <coverage
16- pathCoverage =" false"
17- ignoreDeprecatedCodeUnits =" true"
18- disableCodeCoverageIgnore =" true" >
15+ <coverage pathCoverage =" false" ignoreDeprecatedCodeUnits =" true" >
1916 <report >
2017 <clover outputFile =" build/logs/clover.xml" />
2118 <html outputDirectory =" build/coverage/html" highLowerBound =" 80" />
2219 <text outputFile =" build/coverage/coverage.txt" />
2320 </report >
2421 </coverage >
22+
2523 <extensions >
2624 <bootstrap class =" Nexus\PHPUnit\Tachycardia\TachycardiaExtension" >
2725 <parameter name =" time-limit" value =" 0.50" />
2826 <parameter name =" report-count" value =" 30" />
2927 </bootstrap >
3028 </extensions >
29+
3130 <testsuites >
3231 <testsuite name =" System" >
3332 <directory >tests/system</directory >
3433 </testsuite >
3534 </testsuites >
35+
3636 <source >
3737 <include >
3838 <directory suffix =" .php" >system</directory >
5151 <file >system/Test/FeatureTestCase.php</file >
5252 </exclude >
5353 </source >
54+
5455 <php >
5556 <server name =" app.baseURL" value =" http://example.com/" />
5657 <server name =" CODEIGNITER_SCREAM_DEPRECATIONS" value =" 1" />
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public function testGuessExtension(): void
5454 $ file = new File (SYSTEMPATH . 'index.html ' );
5555 $ this ->assertSame ('html ' , $ file ->guessExtension ());
5656
57- $ file = new File (ROOTPATH . 'phpunit.xml. dist ' );
57+ $ file = new File (ROOTPATH . 'phpunit.dist.xml ' );
5858 $ this ->assertSame ('xml ' , $ file ->guessExtension ());
5959
6060 $ tmp = tempnam (SUPPORTPATH , 'foo ' );
You can’t perform that action at this time.
0 commit comments