-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
42 lines (41 loc) · 1.5 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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<php>
<ini name="error_reporting" value="-1" />
<ini name="date.timezone" value="UTC" />
</php>
<testsuites>
<testsuite>
<directory suffix="Test.php">tests</directory>
<exclude>./tests/BaseTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<file>./src/HermesLaravelServiceProvider.php</file>
<directory suffix=".php">./src/Exception</directory>
<directory suffix=".php">./src/Facades</directory>
<directory suffix=".php">./src/Config</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
<logging>
<log type="coverage-html" target="./coverage/" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout" lowUpperBound="35" highLowerBound="70"/>
<!-- <log type="testdox-text" target="php://stdout" showUncoveredFiles="false"/> -->
</logging>
</phpunit>