-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
51 lines (43 loc) · 1.65 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="tests/bootstrap.php"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnPhpunitDeprecations="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
cacheDirectory="var/cache/phpunit">
<testsuites>
<testsuite name="AdminBundle Test Suite">
<directory>tests/phpunit</directory>
</testsuite>
<testsuite name="AdminBundle Functional Test Suite">
<directory>tests/functional</directory>
</testsuite>
</testsuites>
<php>
<env name="KERNEL_CLASS" value="LAG\AdminBundle\Tests\Application\TestKernel"/>
<!-- ###+ symfony/framework-bundle ### -->
<env name="APP_ENV" value="test"/>
<env name="APP_SECRET" value="4885b6328504a001d0e801257fb51d3f"/>
<!-- ###- symfony/framework-bundle ### -->
<!-- ###+ doctrine/doctrine-bundle ### -->
<env name="DATABASE_URL"
value="mysql://admin_test:[email protected]:3366/admin_test?serverVersion=5.7"/>
<!-- ###- doctrine/doctrine-bundle ### -->
</php>
<coverage>
<report>
<clover outputFile="var/phpunit/logs/clover.xml"/>
<html outputDirectory="var/phpunit/coverage"/>
</report>
</coverage>
<logging>
<junit outputFile="var/phpunit/logs/junit.xml"/>
</logging>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>