File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 44
55# PHPUnit
66/.phpunit *
7+ /phpunit.xml.bak
78/clover.xml
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php"
3- colors =" true" stopOnFailure =" false"
4- beStrictAboutTestsThatDoNotTestAnything =" true"
5- beStrictAboutTodoAnnotatedTests =" true"
6- testdox =" true"
7- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
8- cacheDirectory =" .phpunit.cache" >
3+ colors =" true" stopOnFailure =" false" beStrictAboutTestsThatDoNotTestAnything =" true"
4+ beStrictAboutTodoAnnotatedTests =" true" testdox =" true"
5+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.1/phpunit.xsd"
6+ cacheDirectory =" .phpunit.cache" displayDetailsOnTestsThatTriggerDeprecations =" true" >
97 <testsuites >
108 <testsuite name =" Units" >
119 <directory >test/Unit</directory >
1210 </testsuite >
1311 </testsuites >
1412 <coverage includeUncoveredFiles =" true" pathCoverage =" true" >
13+ <report >
14+ <clover outputFile =" clover.xml" />
15+ </report >
16+ </coverage >
17+ <php >
18+ <env name =" XDEBUG" value =" coverage" />
19+ </php >
20+ <source >
1521 <include >
1622 <directory suffix =" .php" >./src</directory >
1723 </include >
1824 <exclude >
1925 <directory suffix =" .php" >./src/Facade</directory >
2026 <file >./src/GA4Exception.php</file >
2127 </exclude >
22- <report >
23- <clover outputFile =" clover.xml" />
24- </report >
25- </coverage >
26- <php >
27- <env name =" XDEBUG" value =" coverage" />
28- </php >
28+ </source >
2929</phpunit >
You can’t perform that action at this time.
0 commit comments