Skip to content

Commit 1b0b6b0

Browse files
committed
Added phpunit.xml
1 parent 017a18e commit 1b0b6b0

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

phpunit.xml.dist

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
>
7+
<testsuites>
8+
<testsuite name="Unit">
9+
<directory>tests/Unit</directory>
10+
</testsuite>
11+
<testsuite name="Feature">
12+
<directory>tests/Feature</directory>
13+
</testsuite>
14+
</testsuites>
15+
<coverage>
16+
<report>
17+
<html outputDirectory="build/coverage"/>
18+
<text outputFile="build/coverage.txt"/>
19+
<clover outputFile="build/logs/clover.xml"/>
20+
</report>
21+
</coverage>
22+
<source>
23+
<include>
24+
<directory>./src</directory>
25+
</include>
26+
</source>
27+
<php>
28+
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
29+
<env name="APP_ENV" value="testing"/>
30+
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
31+
<env name="BCRYPT_ROUNDS" value="4"/>
32+
<env name="CACHE_STORE" value="array"/>
33+
<env name="DB_CONNECTION" value="testing"/>
34+
<env name="MAIL_MAILER" value="array"/>
35+
<env name="PULSE_ENABLED" value="false"/>
36+
<env name="QUEUE_CONNECTION" value="sync"/>
37+
<env name="SESSION_DRIVER" value="array"/>
38+
<env name="TELESCOPE_ENABLED" value="false"/>
39+
</php>
40+
</phpunit>

0 commit comments

Comments
 (0)