-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
54 lines (52 loc) · 1.47 KB
/
phpunit.xml
File metadata and controls
54 lines (52 loc) · 1.47 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
<?xml version="1.0" encoding="utf-8"?>
<!--
# This file is part of the ChillDev FileManager bundle.
#
# @author Rafał Wrzeszcz <rafal.wrzeszcz@wrzasq.pl>
# @copyright 2012 - 2013 © by Rafał Wrzeszcz - Wrzasq.pl.
# @version 0.1.1
# @since 0.0.1
# @package ChillDev\Bundle\FileManagerBundle
-->
<phpunit
colors="true"
bootstrap="vendor/autoload.php"
strict="true"
>
<!-- test suites definitions -->
<testsuites>
<testsuite name="ChillDev FileManager Bundle">
<directory>./Tests</directory>
<exclude>./vendor</exclude>
</testsuite>
</testsuites>
<!-- code coverage configuration -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">./Resources</directory>
<directory suffix=".php">./Tests</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</whitelist>
</filter>
<!-- logging settings -->
<logging>
<log
type="coverage-html"
target="Resources/doc/coverage"
charset="utf-8"
highlight="true"
/>
<log
type="coverage-text"
target="php://stdout"
charset="utf-8"
/>
<log
type="coverage-clover"
target="Resources/doc/coverage/clover.xml"
/>
</logging>
</phpunit>