forked from Respect/Validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
29 lines (29 loc) · 1.03 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
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
cacheTokens="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/unit/</directory>
</testsuite>
<testsuite name="integration">
<directory suffix=".phpt">tests/integration/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory>library/</directory>
<exclude>
<directory suffix=".php">library/Exceptions/SubdivisionCode</directory>
<directory suffix=".php">library/Rules/SubdivisionCode</directory>
</exclude>
</whitelist>
</filter>
</phpunit>