forked from appserver-io/authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
25 lines (25 loc) · 855 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
<phpunit>
<testsuites>
<testsuite name="appserver-io/authenticator 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>