]> Raphaƫl G. Git Repositories - blog/blob - phpunit.xml.dist
Remove dev env file
[blog] / phpunit.xml.dist
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 backupGlobals="false"
7 colors="true"
8 failOnNotice="true"
9 failOnWarning="true"
10 bootstrap="tests/bootstrap.php"
11 cacheDirectory=".phpunit.cache"
12 >
13 <php>
14 <ini name="display_errors" value="1" />
15 <ini name="error_reporting" value="-1" />
16 <server name="APP_ENV" value="test" force="true" />
17 <server name="SHELL_VERBOSITY" value="-1" />
18 </php>
19
20 <testsuites>
21 <testsuite name="Project Test Suite">
22 <directory>tests</directory>
23 </testsuite>
24 </testsuites>
25
26 <source ignoreSuppressionOfDeprecations="true" restrictNotices="true" restrictWarnings="true">
27 <include>
28 <directory>src</directory>
29 </include>
30 </source>
31
32 <extensions>
33 <bootstrap class="Symfony\Bridge\PhpUnit\SymfonyExtension">
34 <parameter name="clock-mock-namespaces" value="App" />
35 <parameter name="dns-mock-namespaces" value="App" />
36 </bootstrap>
37 </extensions>
38 </phpunit>