38 lines
1.1 KiB
XML
38 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
bootstrap="./bootstrap.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
>
|
|
<php>
|
|
<ini name="intl.default_locale" value="en"/>
|
|
<ini name="intl.error_level" value="0"/>
|
|
<ini name="memory_limit" value="-1"/>
|
|
<env name="test_mode" value="phpunit"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Test Suite">
|
|
<directory suffix="Test.php">./app</directory>
|
|
<directory suffix="Test.php">./admin</directory>
|
|
<directory suffix="Test.php">./base</directory>
|
|
<directory suffix="Test.php">./platform</directory>
|
|
<directory suffix="Test.php">./mall</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|
|
|