-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
30 lines (30 loc) · 981 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
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<testsuite
name="appserver-io/provisioning PHPUnit testsuite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<directory prefix="Mock">src</directory>
<directory suffix="Test.php">src</directory>
</exclude>
</whitelist>
</filter>
<!-- Code coverage report, optional -->
<logging>
<log type="coverage-html"
target="target/reports/unit/coverage" />
<log type="coverage-clover"
target="target/reports/unit/clover.xml" />
<log type="junit" target="target/reports/unit/junit.xml"
logIncompleteSkipped="false" />
</logging>
<php>
<ini name="date.timezone" value="Europe/Berlin" />
</php>
</phpunit>