-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
41 lines (41 loc) · 1.44 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="phpunit.php"
colors="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/src/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/src/Feature</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./src/Contracts</directory>
<file>./src/Facade.php</file>
<file>./src/ServiceProvider.php</file>
</exclude>
<report>
<clover outputFile="clover.xml"/>
<html outputDirectory="coverage"/>
</report>
</coverage>
<logging>
<junit outputFile="build/junit/junit.xml"/>
</logging>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_DEBUG" value="true"/>
<env name="APP_KEY" value="base64:oPF0DoJcm8nOjTkN9vk3kZYw6Z0f+cP+poFKhtQZiFU="/>
<env name="DB_CONNECTION" value="testing"/>
</php>
</phpunit>