magallanes/phpunit.xml.dist

38 lines
1,016 B
Plaintext
Raw Normal View History

2017-01-01 05:28:58 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.default_locale" value="en" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
</php>
<testsuites>
<testsuite name="Magallanes Test Suite">
2017-01-10 13:31:57 +01:00
<directory>./tests/</directory>
2017-01-01 05:28:58 +01:00
</testsuite>
</testsuites>
<groups>
<exclude>
<group>benchmark</group>
<group>intl-data</group>
</exclude>
</groups>
<filter>
<whitelist>
2017-01-10 15:07:50 +01:00
<directory>./src/</directory>
2017-01-01 05:28:58 +01:00
<exclude>
2017-01-10 13:31:57 +01:00
<directory>./tests/</directory>
2017-01-01 05:28:58 +01:00
</exclude>
</whitelist>
</filter>
2017-01-01 06:45:14 +01:00
</phpunit>