forked from mockery/mockery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
36 lines (31 loc) · 1.33 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
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/Bootstrap.php"
colors="true"
verbose="true"
>
<testsuites>
<testsuite name="Mockery Test Suite">
<directory suffix="Test.php">./tests</directory>
<directory phpVersion="7.0.0" phpVersionOperator=">=">./tests/PHP70</directory>
<directory phpVersion="7.2.0" phpVersionOperator=">=">./tests/PHP72</directory>
<exclude>./tests/PHP56</exclude>
<exclude>./tests/Mockery/MockingVariadicArgumentsTest.php</exclude>
</testsuite>
<testsuite name="Mockery Test Suite PHP56">
<directory suffix="Test.php">./tests</directory>
<directory suffix="Test.php">./tests/PHP56</directory>
<exclude>./tests/PHP70</exclude>
<exclude>./tests/PHP72</exclude>
<exclude>./tests/Mockery/MockingVariadicArgumentsTest.php</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>
</exclude>
</whitelist>
</filter>
</phpunit>