Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
executable file
·36 lines (36 loc) · 1.26 KB
/
Copy pathphpunit.xml
File metadata and controls
executable file
·36 lines (36 loc) · 1.26 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
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="phpunit.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverageprocessUncoveredFiles="true">
<include>
<directorysuffix=".php">./src</directory>
</include>
<exclude>
<directory>./src/Illuminate/Pagination/views</directory>
<file>./src/Illuminate/Foundation/start.php</file>
<file>./src/Illuminate/Foundation/Console/Optimize/config.php</file>
</exclude>
</coverage>
<testsuites>
<testsuitename="Laravel Test Suite">
<directorysuffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<ininame="display_errors"value="On" />
<ininame="display_startup_errors"value="On" />
</php>
</phpunit>