-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathphpunit.xml
27 lines (27 loc) · 1.01 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
<phpunit>
<testsuites>
<testsuite name="appserver-io/appserver PHPUnit testsuite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<!-- these libraries are in testing status -->
<directory>src/AppserverIo/Appserver/Meta</directory>
<directory>src/AppserverIo/Appserver/PersistentServletEngine</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"/>
<const name="SERVER_AUTOLOADER" value="vendor/autoload.php"/>
</php>
</phpunit>