mirror of
https://github.com/doctrine/DoctrinePHPCRBundle.git
synced 2026-03-23 22:32:20 +01:00
25 lines
809 B
XML
25 lines
809 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
colors="true"
|
|
bootstrap="vendor/autoload.php"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="Symfony DoctrinePHPCRBundle Test Suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage includeUncoveredFiles="true">
|
|
<include>
|
|
<directory>src/</directory>
|
|
</include>
|
|
</coverage>
|
|
<php>
|
|
<server name="KERNEL_CLASS" value="Doctrine\Bundle\PHPCRBundle\Tests\Fixtures\App\Kernel"/>
|
|
<env name="SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT" value="1"/>
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
|
|
</php>
|
|
</phpunit>
|