31 lines
921 B
XML
31 lines
921 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
|
|
colors="true"
|
|
failOnDeprecation="true"
|
|
failOnNotice="true"
|
|
failOnWarning="true"
|
|
bootstrap="bootstrap.php"
|
|
cacheDirectory="../../.phpunit.cache"
|
|
>
|
|
<php>
|
|
<ini name="display_errors" value="1" />
|
|
<ini name="error_reporting" value="-1" />
|
|
<server name="SHELL_VERBOSITY" value="-1" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Unit Tests">
|
|
<directory>Unit</directory>
|
|
</testsuite>
|
|
<testsuite name="Integration Tests">
|
|
<directory>Integration</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<extensions>
|
|
</extensions>
|
|
</phpunit>
|