-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml.dist
40 lines (37 loc) · 1.5 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit.xsd"
colors="true"
verbose="true"
bootstrap="./Tests/bootstrap.php"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
>
<testsuites>
<testsuite name="OrbitaleCmsBundle test suite">
<directory>Tests</directory>
</testsuite>
</testsuites>
<php>
<server name="SYMFONY_DEPRECATIONS_HELPER" value="9999999"/>
<server name="KERNEL_DIR" value="./Tests/Fixtures/App"/>
<server name="KERNEL_CLASS" value="Orbitale\Bundle\CmsBundle\Tests\Fixtures\App\AppKernel"/>
<ini name="zend.enable_gc" value="0"/>
</php>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./Controller</directory>
<directory suffix=".php">./DependencyInjection</directory>
<directory suffix=".php">./Entity</directory>
<directory suffix=".php">./EventListener</directory>
<directory suffix=".php">./Repository</directory>
<directory suffix=".php">./Resources</directory>
</include>
<exclude>
<directory>./build</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
</phpunit>