-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
44 lines (42 loc) · 1.34 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"
defaultTestSuite="All-Test"
testdox="false"
cacheResult="true"
colors="true"
columns="80"
backupGlobals="false"
processIsolation="false"
stopOnDefect="true"
stopOnError="true"
stopOnFailure="true"
stopOnWarning="true"
bootstrap="vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
backupStaticProperties="false"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
>
<php>
<env name="APP_ENV" value="testing" />
<ini name="date.timezone" value="America/Bogota" />
<ini name="intl.default_locale" value="C.UTF-8" />
<ini name="memory_limit" value="2048M" />
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="All-Test">
<file>tests/MailerAccountsTest.php</file>
<file>tests/MailerTest.php</file>
</testsuite>
</testsuites>
</phpunit>