-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
35 lines (32 loc) · 921 Bytes
/
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
<!--
~ This file is part of the Pbxg33k\MusicInfo package.
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
~
~ (c) 2017 Oguzhan uysal. All rights reserved
-->
<phpunit
bootstrap="vendor/autoload.php"
verbose="true"
colors="true">
<testsuites>
<testsuite name="tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src/</directory>
<exclude>
<file>./src/MusicInfo</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<php>
<ini name="display_errors" value="true"/>
</php>
</phpunit>