-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
phpunit.xml.dist
27 lines (27 loc) · 1.12 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<coverage>
<include>
<directory>./src/</directory>
</include>
</coverage>
<php>
<server name="KERNEL_CLASS" value="App\Kernel"/>
<env name="MONGODB_URL" value="mongodb://localhost:27017" />
<env name="MONGODB_DB" value="enum-test" />
<env name="DOCTRINE_DBAL_URL" value="sqlite:///%kernel.cache_dir%/db.sqlite" />
<!--<env name="DOCTRINE_DBAL_URL" value="pdo-mysql://root@localhost:3306/doctrine_tests" />-->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0&max[self]=0&max[total]=9999&verbose=1&baselineFile=./tests/allowed-deprecations.json&generateBaseline=0"/>
<env name="SYMFONY_PHPUNIT_REQUIRE" value=""/>
<env name="SYMFONY_PHPUNIT_VERSION" value="9.5"/>
</php>
<testsuites>
<testsuite name="Elao Enumerations Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>