-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 757 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<phpunit
bootstrap = "./bootstrap.php"
colors = "true"
verbose = "true"
debug = "true"
report-useless-tests = "true"
>
<testsuites>
<testsuite name="all">
<directory>tests/</directory>
</testsuite>
</testsuites>
<!--logging>
<log type="coverage-html" target="/var/log/companero/code-coverage" charset="UTF-8"/>
</logging>
<filter>
<whitelist>
<directory>src/Companero/CompaneroBundle/</directory>
<exclude>
<directory>src/Companero/CompaneroBundle/Tests</directory>
</exclude>
</whitelist>
</filter-->
</phpunit>