-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathphpunit.xml
34 lines (34 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="laravel-postal tests">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_DEBUG" value="true"/>
<server name="APP_ENV" value="testing"/>
<server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<server name="DB_CONNECTION" value="testing"/>
<server name="MAIL_DRIVER" value="postal"/>
<server name="MAIL_MAILER" value="postal"/>
</php>
<!-- <coverage>
<report>
<html outputDirectory="coverage-html"/>
</report>
</coverage> -->
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>