-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
44 lines (43 loc) · 1.84 KB
/
phpunit.xml
File metadata and controls
44 lines (43 loc) · 1.84 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016 - 2024 Itspire.
~ This software is licensed under the BSD-3-Clause license. (see LICENSE.md for full license)
~ All Right Reserved.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
backupGlobals="false" backupStaticProperties="false" bootstrap="src/test/php/bootstrap.php"
cacheDirectory=".phpunit.cache" colors="true" processIsolation="false" stopOnFailure="false">
<testsuites>
<testsuite name="Unit Test Suite">
<directory>src/test/php/Unit</directory>
</testsuite>
<testsuite name="Functional Test Suite">
<directory>src/test/php/Functional</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="build/coverage" lowUpperBound="35" highLowerBound="70" />
<text outputFile="php://stdout" showOnlySummary="true" />
</report>
</coverage>
<source>
<include>
<directory>src/main/php</directory>
</include>
<exclude>
<directory suffix="Interface.php">src/main/php</directory>
<directory>src/main/php/Attribute</directory>
<directory>src/main/php/Resources</directory>
<file>src/main/php/ItspireFrameworkExtraBundle.php</file>
<directory>src/test/php</directory>
</exclude>
</source>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[indirect]=1&max[direct]=0&max[self]=0" />
<server name="KERNEL_CLASS" value="Itspire\FrameworkExtraBundle\Tests\TestApp\Kernel" />
<server name="APP_ENV" value="test" force="true" />
<server name="APP_DEBUG" value="true" force="true" />
</php>
</phpunit>