mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
22 lines
723 B
XML
22 lines
723 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/5.6/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
bootstrap="app/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="Sylius Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<php>
|
|
<server name="KERNEL_CLASS_PATH" value="/app/TestAppKernel.php" />
|
|
<server name="IS_DOCTRINE_ORM_SUPPORTED" value="true" />
|
|
</php>
|
|
|
|
<listeners>
|
|
<listener class="\DAMA\DoctrineTestBundle\PHPUnit\PHPUnitStaticDbConnectionListener" />
|
|
</listeners>
|
|
</phpunit>
|