mirror of
https://github.com/jbcr/sitemap-plugin.git
synced 2026-03-24 17:02:19 +01:00
Add missing nelmio bundles to test application (for api test case) Using assertContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringContainsString() or assertStringContainsStringIgnoringCase() instead. Add test-pack dependency Add browser kit Revert "Add browser kit" This reverts commit35e50466e8. Revert "Add test-pack dependency" This reverts commitc612abfdea.
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>
|