-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
23 lines (23 loc) · 880 Bytes
/
phpunit.xml.dist
File metadata and controls
23 lines (23 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php" defaultTestSuite="unit" beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true" cacheDirectory=".phpunit.cache" displayDetailsOnPhpunitDeprecations="true">
<testsuites>
<testsuite name="unit">
<directory>./tests/unit/</directory>
</testsuite>
<testsuite name="functionnal">
<directory>./tests/functionnal/</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="assert.exception" value="1"/>
<env name="REDIS_HOST" value="127.0.0.1"/>
<env name="REDIS_PORT" value="6379"/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>