forked from ezsystems/ezrecommendation-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (23 loc) · 767 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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
failOnWarning="true"
colors="true">
<testsuites>
<testsuite name="Lib Tests">
<directory>tests/lib/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
<exclude>
<directory>tests/bundle/</directory>
<directory>tests/lib/</directory>
</exclude>
</whitelist>
</filter>
<extensions>
<extension class="EzSystems\EzRecommendationClient\PHPUnit\BypassFinalHook"/>
</extensions>
</phpunit>