-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 879 Bytes
/
phpunit.xml
File metadata and controls
32 lines (32 loc) · 879 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
29
30
31
32
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/phpunit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
ignoreDeprecatedCodeUnitsFromCodeCoverage="true"
>
<testsuites>
<testsuite name="default">
<directory prefix="test_" suffix=".php">./tests/phpunit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./classes</directory>
<file>formidable.php</file>
<exclude>
<directory suffix=".php">./classes/views</directory>
<directory suffix=".php">./deprecated</directory>
</exclude>
</whitelist>
</filter>
</phpunit>