Easy_solution/phpunit.xml.dist

34 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
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="APPLICATION" value="solutions" force="true" />
<server name="AWS_S3_PORTAL_URL" value="solutions" force="true" />
<env name="S3_PORTAL_BUCKET" value="test-bucket-placeholder" force="true" />
<server name="AWS_ENDPOINT" value="solutions" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
</php>
<extensions>
<bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
</extensions>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>