File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 4
4
5
5
# PHPUnit
6
6
/.phpunit *
7
+ /phpunit.xml.bak
7
8
/clover.xml
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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" >
9
7
<testsuites >
10
8
<testsuite name =" Units" >
11
9
<directory >test/Unit</directory >
12
10
</testsuite >
13
11
</testsuites >
14
12
<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 >
15
21
<include >
16
22
<directory suffix =" .php" >./src</directory >
17
23
</include >
18
24
<exclude >
19
25
<directory suffix =" .php" >./src/Facade</directory >
20
26
<file >./src/GA4Exception.php</file >
21
27
</exclude >
22
- <report >
23
- <clover outputFile =" clover.xml" />
24
- </report >
25
- </coverage >
26
- <php >
27
- <env name =" XDEBUG" value =" coverage" />
28
- </php >
28
+ </source >
29
29
</phpunit >
You can’t perform that action at this time.
0 commit comments