-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
32 lines (32 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
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" verbose="true" convertNoticesToExceptions="false" stderr="true">
<php>
<ini name="date.timezone" value="GMT"/>
</php>
<testsuites>
<testsuite name="Basics">
<directory>res/php/Test/Basics</directory>
<file>res/php/Test/BasicsTest.php</file>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="Extended">
<directory>res/php/Test/Extended</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="Util">
<directory>res/php/Test/Util</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="Application">
<directory>res/php/Test/Application</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">res/php/Test</directory>
</whitelist>
</filter>
</phpunit>