-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathphpunit.orm.xml
More file actions
25 lines (22 loc) · 897 Bytes
/
phpunit.orm.xml
File metadata and controls
25 lines (22 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://phpunit.de/manual/4.3/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" colors="true">
<php>
<ini name="error_reporting" value="-1"/>
<server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<server name="KERNEL_CLASS" value="Tests\OrmApp\src\Kernel" />
</php>
<extensions>
<extension class="Zenstruck\Browser\Test\BrowserExtension" />
</extensions>
<testsuites>
<testsuite name="Orm App Test Suite">
<file>./Tests/OrmAppTest.php</file>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>