Uh oh!
There was an error while loading. Please reload this page.
forked from antonioribeiro/countries
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
31 lines (31 loc) · 1.12 KB
/
Copy pathphpunit.xml
File metadata and controls
31 lines (31 loc) · 1.12 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitbackupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
syntaxCheck="true"
verbose="true"
>
<testsuites>
<testsuitename="Laravel Test Suite">
<directorysuffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelistprocessUncoveredFilesFromWhitelist="true">
<directorysuffix=".php">./src</directory>
<exclude></exclude>
</whitelist>
</filter>
<logging>
<logtype="coverage-html"target="coverage/"lowUpperBound="35"highLowerBound="70"/>
<logtype="coverage-clover"target="coverage/coverage-clover.xml"lowUpperBound="35"highLowerBound="70"/>
<logtype="coverage-text"target="php://stdout"showUncoveredFiles="true"/>
</logging>
</phpunit>