-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
52 lines (51 loc) · 2.38 KB
/
phpunit.xml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="false"
verbose="true">
<testsuites>
<testsuite name="default">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
<server name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<server name="KERNEL_CLASS" value="App\Kernel"/>
<server name="APP_SECRET" value="$ecretf0rt3st"/>
<server name="LOCK_DSN" value="semaphore"/>
<server name="DATABASE_URL" value="mysql://root:@127.0.0.1:3306/bilemo_test"/>
<server name="JWT_SECRET_KEY" value="%kernel.project_dir%/config/jwt/private.pem"/>
<server name="JWT_PUBLIC_KEY" value="%kernel.project_dir%/config/jwt/public.pem"/>
<server name="JWT_PASSPHRASE" value="83ca81374d152a697035ff11c2c0fce0"/>
<server name="CORS_ALLOW_ORIGIN" value="^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$"/>
<server name="ADMIN_EMAIL" value="[email protected]"/>
<server name="ADMIN_PASSWORD" value="password"/>
<server name="ADMIN_FIRSTNAME" value="Estelle"/>
<server name="ADMIN_LASTNAME" value="Gaits"/>
</php>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
<listener class="Symfony\Bridge\PhpUnit\CoverageListener"/>
</listeners>
</phpunit>