mirror of
https://github.com/jbcr/sitemap-plugin.git
synced 2026-03-24 17:02:19 +01:00
30 lines
941 B
XML
30 lines
941 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.0/phpunit.xsd"
|
|
bootstrap="tests/Application/config/bootstrap.php"
|
|
colors="true"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
<server name="KERNEL_DIR" value="tests/Application/" />
|
|
<server name="IS_DOCTRINE_ORM_SUPPORTED" value="1"/>
|
|
<server name="KERNEL_CLASS" value="Tests\SitemapPlugin\Application\Kernel" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="tests">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory>src</directory>
|
|
<exclude>
|
|
<directory>src/Resources</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|