You've already forked listmonk-api-bundle
30 lines
894 B
Plaintext
30 lines
894 B
Plaintext
|
|
<?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"
|
||
|
|
backupGlobals="false"
|
||
|
|
colors="true"
|
||
|
|
bootstrap="vendor/autoload.php"
|
||
|
|
cacheDirectory=".phpunit.cache"
|
||
|
|
>
|
||
|
|
<php>
|
||
|
|
<ini name="display_errors" value="1"/>
|
||
|
|
<ini name="error_reporting" value="-1"/>
|
||
|
|
<server name="APP_ENV" value="test" force="true"/>
|
||
|
|
<server name="SHELL_VERBOSITY" value="-1"/>
|
||
|
|
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
|
||
|
|
</php>
|
||
|
|
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="Listmonk-API-Bundle Testsuite">
|
||
|
|
<directory>tests</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
|
||
|
|
<source>
|
||
|
|
<include>
|
||
|
|
<directory suffix=".php">src</directory>
|
||
|
|
</include>
|
||
|
|
</source>
|
||
|
|
</phpunit>
|