-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 1.14 KB
/
phpunit.xml
File metadata and controls
20 lines (20 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" cacheResult="true" cacheResultFile="bootstrap/cache/.phpunit.result.cache" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" beStrictAboutCoversAnnotation="false" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" processIsolation="false" stopOnFailure="true">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<clover outputFile="resources/.tmp/clover.xml"/>
<html outputDirectory="resources/.tmp/reports/coverage" lowUpperBound="55" highLowerBound="85"/>
</report>
</coverage>
<logging>
<testdoxText outputFile="resources/.tmp/reports/executed.txt"/>
</logging>
<testsuites>
<testsuite name="integration">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>