-
Notifications
You must be signed in to change notification settings - Fork 13
/
phpunit.xml.dist
32 lines (32 loc) · 1.16 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
verbose="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<php>
<ini name="memory_limit" value="2048M"/>
</php>
<testsuites>
<testsuite name="Matrix Unit Test Suite">
<directory suffix="Test.php">unitTests/classes/src</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">classes/src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="./unitTests/codeCoverage" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="./unitTests/codeCoverage/codeCoverage.xml"/>
</logging>
</phpunit>