Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
26 lines (26 loc) · 958 Bytes
/
Copy pathphpunit.xml
File metadata and controls
26 lines (26 loc) · 958 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
25
26
<?xml version="1.0"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"bootstrap="vendor/autoload.php"colors="true"executionOrder="defects"cacheDirectory=".phpunit.cache">
<coverage>
<report>
<cloveroutputFile="build/logs/clover.xml"/>
<htmloutputDirectory="build/logs/html"/>
<phpoutputFile="build/logs/coverage.serialized"/>
<textoutputFile="php://stdout"showUncoveredFiles="false"/>
</report>
</coverage>
<testsuites>
<testsuitename="ArrayLookup">
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging>
<testdoxHtmloutputFile="build/logs/testdox.html"/>
<testdoxTextoutputFile="build/logs/testdox.txt"/>
<junitoutputFile="build/logs/logfile.xml"/>
</logging>
<source>
<include>
<directorysuffix=".php">./src</directory>
</include>
</source>
</phpunit>