forked from JamesHeinrich/getID3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (32 loc) · 1.19 KB
/
phpunit.xml
File metadata and controls
35 lines (32 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true">
<php>
<ini name="error_reporting" value="-1" />
<const name="GETID3_TEMP_DIR" value="/tmp" />
<const name="ENT_SUBSTITUTE" value="8" />
<const name="IMG_JPG" value="2" />
<const name="GETID3_INCLUDEPATH" value="/var/www/html/src/" />
<const name="GETID3_OS_ISWINDOWS" value="false" />
</php>
<testsuites>
<testsuite name="general">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>