-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
39 lines (37 loc) · 1.35 KB
/
phpunit.xml
File metadata and controls
39 lines (37 loc) · 1.35 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
displayDetailsOnPhpunitDeprecations="true"
failOnPhpunitDeprecation="true"
failOnRisky="true"
failOnWarning="true"
colors="true">
<testsuites>
<testsuite name="default">
<directory>tests</directory>
</testsuite>
</testsuites>
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="ENV" value="test"/>
<env name="DEBUG" value="true"/>
<env name="LOG_ENABLED" value="0"/>
<env name="DB_ADAPTER" value="memory"/>
<env name="JWT_SIGNER" value="hmac"/>
<env name="JWT_HMAC_SCRET" value="YWl3OGlGZTZLYWk5Cg"/>
<env name="CACHE_ADAPTER" value="memory"/>
<env name="FILESYSTEM_ADAPTER" value="memory"/>
<env name="PUBLISHER_ADAPTER" value="mock"/>
<env name="CONSUMER_ADAPTER" value="mock"/>
</php>
</phpunit>