mirror of
https://github.com/Thavarshan/fetch-php.git
synced 2025-01-16 14:18:15 +01:00
25 lines
770 B
XML
25 lines
770 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
colors="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false">
|
|
<testsuites>
|
|
<testsuite name="Fetch PHP Test Suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<ini name="date.timezone" value="UTC" />
|
|
<ini name="intl.default_locale" value="C.UTF-8" />
|
|
<ini name="memory_limit" value="2048M" />
|
|
<!--
|
|
<env name="REDIS_HOST" value="127.0.0.1" />
|
|
<env name="REDIS_PORT" value="6379" />
|
|
-->
|
|
</php>
|
|
</phpunit>
|