-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
48 lines (48 loc) · 1.88 KB
/
phpunit.xml.dist
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
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<clover outputFile="./tests/reports/clover.xml"/>
<text outputFile="php://stdout"/>
<html outputDirectory="./tests/reports/html-coverage" lowUpperBound="35" highLowerBound="98"/>
<xml outputDirectory="./tests/reports/xml-coverage"/>
</report>
</coverage>
<logging>
<testdoxText outputFile="php://stdout"/>
</logging>
<testsuites>
<testsuite name="Laravel Artisan Domain Contexts Unit Tests">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_KEY" value="base64:Dnj5j0QECXE/NrdgRvUkIfFGNdxQL1IlOMxSFVk/iPs="/>
<server name="APP_ENV" value="testing"/>
<server name="DB_CONNECTION" value="mysql"/>
<server name="DB_HOST" value="127.0.0.1"/>
<server name="DB_PORT" value="3306"/>
<server name="DB_DATABASE" value="tests"/>
<server name="DB_USERNAME" value="root"/>
<server name="DB_PASSWORD" value="root"/>
<!-- <server name="DB_CONNECTION" value="sqlite"/> -->
<!-- <server name="DB_DATABASE" value=":memory:"/> -->
</php>
</phpunit>