-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (25 loc) · 1.08 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
28 lines (25 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.3/phpunit.xsd"
colors="true"
verbose="true">
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true"/>
<log type="coverage-html" target="build/clover-html" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="65"/>
<log type="coverage-clover" target="build/clover.xml"/>
<log type="testdox-html" target="build/testdox.html"/>
<log type="testdox-text" target="build/testdox.txt"/>
<log type="junit" target="build/junit.xml" logIncompleteSkipped="false"/>
</logging>
<testsuites>
<testsuite name="Linio Recruiting test suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>src</directory>
</whitelist>
</filter>
</phpunit>