-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 915 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://docs.phpunit.de/en/12.5/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnPhpunitDeprecations="true" failOnDeprecation="true" displayDetailsOnSkippedTests="true">
<coverage/>
<testsuites>
<testsuite name="nano Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<php>
<const name="NANO_TEST" value="bar"/>
<env name="REDIS_PASSWORD" value="qwerty"/>
<ini name="date.timezone" value="UTC"/>
<ini name="memory_limit" value="350M"/>
</php>
<source>
<include>
<directory suffix=".php">classes/</directory>
</include>
</source>
</phpunit>