A gateway/firewall task to be able to talk someone about the real job
Fibinger Ádám
2021-10-22 3f95d8278fc20cdc53936ee8eac2361a12440312
commit | author | age
fd7692 1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
4 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5          xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6          colors="true"
7          bootstrap="tests/bootstrap.php"
8 >
9     <php>
10         <ini name="display_errors" value="1" />
11         <ini name="error_reporting" value="-1" />
12         <server name="APP_ENV" value="test" force="true" />
13         <server name="SHELL_VERBOSITY" value="-1" />
14         <server name="SYMFONY_PHPUNIT_REMOVE" value="" />
15         <server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
3f95d8 16         <server name="KERNEL_CLASS" value="App\Kernel" />
fd7692 17     </php>
18
19     <testsuites>
20         <testsuite name="Project Test Suite">
21             <directory>tests</directory>
22         </testsuite>
23     </testsuites>
24
25     <coverage processUncoveredFiles="true">
26         <include>
27             <directory suffix=".php">src</directory>
28         </include>
29     </coverage>
30
31     <listeners>
32         <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
33     </listeners>
34
35     <!-- Run `composer require symfony/panther` before enabling this extension -->
36     <!--
37     <extensions>
38         <extension class="Symfony\Component\Panther\ServerExtension" />
39     </extensions>
40     -->
41 </phpunit>