forked from mockery/mockery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
30 lines (27 loc) · 1.13 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/Bootstrap.php"
colors="true"
verbose="true"
>
<testsuites>
<testsuite name="Mockery Test Suite PHP8">
<directory suffix="Test.php">./tests</directory>
<directory phpVersion="8.0.0" phpVersionOperator=">=">./tests/PHP80</directory>
</testsuite>
<testsuite name="Mockery Test Suite PHP7">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/PHP80</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./library/</directory>
<exclude>
<directory>./library/Mockery/Adapter/Phpunit/Legacy</directory>
<file>./library/Mockery/Adapter/Phpunit/TestListener.php</file>
<file>./library/Mockery/Adapter/Phpunit/MockeryPHPUnitIntegrationAssertPostConditions.php</file>
<file>./library/Mockery/Adapter/Phpunit/MockeryTestCaseSetUp.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>