-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (24 loc) · 766 Bytes
/
phpunit.xml
File metadata and controls
27 lines (24 loc) · 766 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
<phpunit backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<php>
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="PhpBCC Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</phpunit>