24 lines
821 B
XML
24 lines
821 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
bootstrap="tests/TestBootstrap.php"
|
|
executionOrder="random">
|
|
<coverage>
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
</coverage>
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
<server name="KERNEL_CLASS" value="Shopware\Core\Kernel"/>
|
|
<env name="APP_ENV" value="test"/>
|
|
<env name="APP_DEBUG" value="1"/>
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="LodnerSetBuilder Testsuite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|