-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (35 loc) · 1.9 KB
/
Copy pathphpunit.xml
File metadata and controls
37 lines (35 loc) · 1.9 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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" backupGlobals="true" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="true" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false" timeoutForSmallTests="1" timeoutForMediumTests="10" timeoutForLargeTests="60" verbose="false" bootstrap="./vendor/autoload.php">
<coverage includeUncoveredFiles="true"
processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<clover outputFile="tests/_reports/clover.xml"/>
<crap4j outputFile="tests/_reports/crap4j.xml" threshold="50"/>
<html outputDirectory="tests/_reports/html-coverage" lowUpperBound="50" highLowerBound="90"/>
<php outputFile="tests/_reports/coverage.php"/>
<text outputFile="tests/_reports/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="tests/_reports/xml-coverage"/>
</report>
</coverage>
<logging>
<junit outputFile="tests/_log/junit.xml"/>
<teamcity outputFile="tests/_log/teamcity.txt"/>
<testdoxHtml outputFile="tests/_log/testdox.html"/>
<testdoxText outputFile="tests/_log/testdox.txt"/>
<testdoxXml outputFile="tests/_log/testdox.xml"/>
<text outputFile="tests/_log/logfile.txt"/>
</logging>
<testsuites>
<testsuite name="CRUD">
<directory suffix="Test.php">src/Core/Crud/tests/</directory>
</testsuite>
<testsuite name="Lib">
<directory suffix="Test.php">src/Core/Lib/tests/</directory>
</testsuite>
</testsuites>
</phpunit>