-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
20 lines (20 loc) · 988 Bytes
/
phpunit.xml.dist
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" bootstrap="tests/unit/bootstrap.php" colors="true" convertErrorsToExceptions="false" convertNoticesToExceptions="false" convertWarningsToExceptions="false" backupGlobals="false" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./application/classes</directory>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".phtml">./</directory>
<file>./bootstrap.php</file>
</exclude>
<report>
<html outputDirectory="./data/phpunit_report" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<testsuite name="Main Test Suite">
<directory>./tests/unit/</directory>
</testsuite>
<logging/>
</phpunit>