]> Raphaƫl G. Git Repositories - airlibre/blob - phpunit.xml.dist
Update phpunit dist
[airlibre] / 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="bin/.phpunit/phpunit.xsd"
6 backupGlobals="false"
7 colors="true"
8 bootstrap="config/bootstrap.php"
9 >
10 <php>
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="7.5" />
16
17 <!-- ###+ google/apiclient ### -->
18 <env name="GOOGLE_API_KEY" value=""/>
19 <env name="GOOGLE_CLIENT_ID" value=""/>
20 <env name="GOOGLE_CLIENT_SECRET" value=""/>
21 <!-- ###- google/apiclient ### -->
22
23 <!-- ###+ symfony/framework-bundle ### -->
24 <env name="APP_ENV" value="dev"/>
25 <env name="APP_SECRET" value="6c7e1549a2fc98a71e3f2b6d3dbec822"/>
26 <!-- ###- symfony/framework-bundle ### -->
27 </php>
28
29 <testsuites>
30 <testsuite name="Project Test Suite">
31 <directory>tests</directory>
32 </testsuite>
33 </testsuites>
34
35 <filter>
36 <whitelist>
37 <directory>src</directory>
38 </whitelist>
39 </filter>
40
41 <listeners>
42 <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
43 </listeners>
44 </phpunit>