forked from ryanluker/vscode-coverage-gutters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
22 lines (20 loc) · 668 Bytes
/
phpunit.xml
File metadata and controls
22 lines (20 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://phpunit.de/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true">
<testsuite name="main">
<directory suffix="Test.php">tests</directory>
</testsuite>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-clover" target="cov.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>