-
Notifications
You must be signed in to change notification settings - Fork 26
/
larapress.phpunit.xml
36 lines (36 loc) · 1.51 KB
/
larapress.phpunit.xml
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"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app/Larapress</directory>
<exclude>
<directory suffix=".php">./app/Larapress/Exceptions</directory>
<directory suffix=".php">./app/Larapress/Facades</directory>
<directory suffix=".php">./app/Larapress/Lang</directory>
<directory suffix=".php">./app/Larapress/Providers</directory>
<directory suffix=".php">./app/Larapress/Views</directory>
<directory suffix=".php">./app/Larapress/Tests</directory>
<file>./app/Larapress/artisan.php</file>
<file>./app/Larapress/filters.php</file>
<file>./app/Larapress/routes.php</file>
<file>./app/Larapress/services.php</file>
<file>./app/Larapress/start.php</file>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Application Test Suite">
<directory>./app/Larapress/Tests/</directory>
</testsuite>
</testsuites>
</phpunit>