-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml
27 lines (27 loc) · 1005 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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="default">
<directory>tests/Regression</directory>
<directory>tests/Functional</directory>
<directory>tests</directory>
</testsuite>
<testsuite name="coverage">
<directory>tests</directory>
<exclude>tests/Regression</exclude>
<exclude>tests/Functional</exclude>
</testsuite>
<testsuite name="regression">
<directory>tests/Regression</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/Functional</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>