-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (25 loc) · 873 Bytes
/
phpunit.xml
File metadata and controls
28 lines (25 loc) · 873 Bytes
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
<phpunit bootstrap="./tests/bootstrap.php">
<testsuites>
<testsuite name="Unit Tests">
<directory>./tests/unit-tests</directory>
</testsuite>
<testsuite name="Integration Tests">
<directory>./tests/integration-tests</directory>
</testsuite>
<testsuite name="Functional Tests">
<directory>./tests/functional-tests</directory>
</testsuite>
</testsuites>
<listeners>
<!-- close any expectations, report issues -->
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
<filter>
<blacklist>
<directory>./vendor/</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>