-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 1.02 KB
/
phpunit.xml.dist
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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
forceCoversAnnotation="true"
stopOnFailure="false">
<testsuites>
<testsuite name="My Test Suite">
<directory suffix="Test.php" phpVersion="7.2.24" phpVersionOperator=">=">/var/www/html/wp-content/plugins/woo-nfe/tests</directory>
<file phpVersion="7.2.24" phpVersionOperator=">=">/var/www/html/wp-content/plugins/woo-nfe/tests/NFe_Extension_Test.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<file>/var/www/html/wp-content/plugins/woo-nfe/tests/bootstrap.php</file>
<file>/var/www/html/wp-content/plugins/woo-nfe/tests/helpers.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>