-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
23 lines (23 loc) · 924 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="CodeMommy DevelopPHP">
<directory suffix="Test.php">./test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./library</directory>
<directory suffix=".php">./interface</directory>
<directory suffix=".php">./class</directory>
<directory suffix=".php">./command</directory>
<exclude>
<file>./library/Autoload.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./workbench/code_coverage_report/clover/clover.xml"/>
<log type="coverage-html" target="./workbench/code_coverage_report/html"/>
</logging>
</phpunit>