-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
phpunit.xml
44 lines (44 loc) · 1.55 KB
/
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
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">src/</directory>
<file>src/helpers.php</file>
</include>
<exclude>
<directory suffix=".php">resources/</directory>
<directory suffix=".php">routes/</directory>
<directory suffix=".php">src/Publisher/</directory>
<file>src/ComposerScripts.php</file>
</exclude>
</coverage>
<testsuites>
<testsuite name="Controller">
<directory suffix="Test.php">./tests/Controller</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<env name="DB_CONNECTION" value="testing"/>
<env name="MEMORY_DRIVER" value="runtime.default"/>
<env name="BCRYPT_ROUNDS" value="4"/>
</php>
</phpunit>