mirror of
https://github.com/jbcr/SyliusCmsPlugin.git
synced 2026-03-24 17:02:09 +01:00
22 lines
824 B
XML
22 lines
824 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="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="BitBagSyliusCmsPlugin Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<php>
|
|
<server name="KERNEL_CLASS_PATH" value="/tests/Application/AppKernel.php"/>
|
|
<server name="KERNEL_DIR" value="tests/Application/app/" />
|
|
<server name="KERNEL_CLASS" value="AppKernel" />
|
|
<server name="IS_DOCTRINE_ORM_SUPPORTED" value="true"/>
|
|
<server name="EXPECTED_RESPONSE_DIR" value="../../Responses/Expected"/>
|
|
</php>
|
|
</phpunit>
|