-
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) · 1.05 KB
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 1.05 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
<phpunit colors="true" bootstrap="_bootstrap.php">
<testsuites>
<testsuite name="EasySolr">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">tests</directory>
</whitelist>
</filter>
<!--<logging>
<log type="coverage-html" target="_output/report" lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-clover" target="_output/coverage.xml"/>
<log type="coverage-php" target="_output/coverage.serialized"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="json" target="_output/logfile.json"/>
<log type="tap" target="_output/logfile.tap"/>
<log type="junit" target="_output/logfile.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="_output/testdox.html"/>
<log type="testdox-text" target="_output/testdox.txt"/>
</logging>-->
</phpunit>