-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
25 lines (25 loc) · 966 Bytes
/
phpunit.xml
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" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" backupGlobals="false" failOnRisky="false" failOnWarning="false" bootstrap="tests/bootstrap.php" colors="true" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
<testsuite name="unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<html outputDirectory="reports"/>
<text outputFile="reports/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="reports/xml"/>
</report>
</coverage>
<logging/>
<php>
<ini name="memory_limit" value="-1"/>
</php>
</phpunit>