-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
44 lines (43 loc) · 1.76 KB
/
phpunit.xml
File metadata and controls
44 lines (43 loc) · 1.76 KB
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"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="default">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_NAME" value="SPOTLIBS_MICROSERVICE"/>
<env name="APP_DEBUG" value="TRUE"/>
</php>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
<file>src/Libraries/Client.php</file>
</include>
<exclude>
<file>src/Exceptions/Handler.php</file>
<file>src/Libraries/Kafka.php</file>
<file>src/Libraries/KafkaCallable.php</file>
<file>src/Libraries/Storage.php</file>
<directory suffix=".php">src/Commands</directory>
<directory suffix=".php">src/Facades</directory>
<directory suffix=".php">src/Middlewares</directory>
<directory suffix=".php">src/Providers</directory>
<directory suffix=".php">src/Validations</directory>
<directory suffix=".php">src/Libraries/StorageDrivers</directory>
</exclude>
</coverage>
</phpunit>