forked from mollie/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (18 loc) · 793 Bytes
/
phpunit.xml
File metadata and controls
20 lines (18 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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="tests/Application/config/bootstrap.php">
<testsuites>
<testsuite name="Mollie Functional Test Suite">
<directory>tests/PHPUnit/Functional</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_ENV" value="test" />
<server name="KERNEL_CLASS" value="Tests\SyliusMolliePlugin\Application\Kernel" />
<server name="EXPECTED_RESPONSE_DIR" value="tests/PHPUnit/Responses/json" />
<server name="IS_DOCTRINE_ORM_SUPPORTED" value="true" />
</php>
</phpunit>