-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 856 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 856 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" testdox="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
displayDetailsOnTestsThatTriggerDeprecations="true">
<testsuites>
<testsuite name="core">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage ignoreDeprecatedCodeUnits="true" pathCoverage="true">
<report>
<text outputFile="coverage.txt" showOnlySummary="true"/>
<html outputDirectory="test-coverage"/>
<php outputFile="coverage.php"/>
</report>
</coverage>
<php>
<ini name="xdebug.mode" value="coverage"/>
<ini name="memory_limit" value="1024M"/>
</php>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>