-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
60 lines (52 loc) · 2.22 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
60 lines (52 loc) · 2.22 KB
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
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
cacheDirectory=".phpunit.cache"
colors="true"
bootstrap="tests/bootstrap.php">
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED" />
<server name="APP_ENV" value="test" force="true" />
<server name="APP_DEBUG" value="false" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="KERNEL_CLASS" value="Softspring\UserBundle\Tests\TestApplication\Kernel" />
<!-- ###+ symfony/framework-bundle ### -->
<env name="APP_ENV" value="dev"/>
<env name="APP_SECRET" value="f56343225038b8f701f54cd3d5bfcde2"/>
<!-- ###- symfony/framework-bundle ### -->
<env name="DATABASE_URL" value="sqlite:////tmp/com.github.softspring.userbundle/tests/var/test/test_database.sqlite"/>
</php>
<!-- <extensions>-->
<!-- <extension class="Softspring\UserBundle\Test\PhpUnitExtension"/>-->
<!-- </extensions>-->
<testsuites>
<testsuite name="UserBundle Test Suite">
<directory suffix="Test.php">tests</directory>
<exclude>tests/DataCollector/</exclude>
<exclude>tests/EventListener/</exclude>
<exclude>tests/Form/</exclude>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>tests</directory>
</exclude>
</source>
<coverage>
<report>
<clover outputFile="clover.xml"/>
<html outputDirectory=".phpunit.cache/html-coverage"
lowUpperBound="50"
highLowerBound="90"/>
<text outputFile=".phpunit.cache/coverage.txt"
showUncoveredFiles="false"
showOnlySummary="true"/>
</report>
</coverage>
</phpunit>