forked from Locastic/Loggastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
23 lines (23 loc) · 1.1 KB
/
Copy pathphpunit.xml
File metadata and controls
23 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" colors="true" bootstrap="tests/Fixtures/app/bootstrap.php">
<php>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<server name="APP_ENV" value="test" force="true"/>
<server name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<server name="KERNEL_DIR" value="tests/Fixtures/app/"/>
<server name="KERNEL_CLASS" value="AppKernel"/>
<server name="ACTIVITY_LOGS_ELASTIC_URL" value="https://localhost:9200"/>
<server name="ACTIVITY_LOGS_ELASTIC_USER" value="my_user"/>
<server name="ACTIVITY_LOGS_ELASTIC_PASSWORD" value="my_password"/>
<server name="ACTIVITY_LOGS_ELASTIC_SSL_VERIFICATION" value="0"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage/>
</phpunit>