A gateway/firewall task to be able to talk someone about the real job
Fibinger Ádám
2021-10-22 e3c5369dcc89531b88f7abe421f1bf1b6f69d223
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" />
16     </php>
17
18     <testsuites>
19         <testsuite name="Project Test Suite">
20             <directory>tests</directory>
21         </testsuite>
22     </testsuites>
23
24     <coverage processUncoveredFiles="true">
25         <include>
26             <directory suffix=".php">src</directory>
27         </include>
28     </coverage>
29
30     <listeners>
31         <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
32     </listeners>
33
34     <!-- Run `composer require symfony/panther` before enabling this extension -->
35     <!--
36     <extensions>
37         <extension class="Symfony\Component\Panther\ServerExtension" />
38     </extensions>
39     -->
40 </phpunit>