forked from aawnu/php-ga4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
29 lines (29 loc) · 1.06 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php"
colors="true" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true" testdox="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerDeprecations="true">
<testsuites>
<testsuite name="Units">
<directory>test/Unit</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" pathCoverage="true">
<report>
<clover outputFile="clover.xml" />
</report>
</coverage>
<php>
<env name="XDEBUG" value="coverage" />
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/Facade</directory>
<file>./src/GA4Exception.php</file>
</exclude>
</source>
</phpunit>