-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
57 lines (49 loc) · 1.81 KB
/
phpunit.xml.dist
File metadata and controls
57 lines (49 loc) · 1.81 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="true"
processIsolation="false"
printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
beStrictAboutTestsThatDoNotTestAnything="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestSize="true"
beStrictAboutCoversAnnotation="true"
timeoutForSmallTests="2"
verbose="true">
<listeners>
<listener class="Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>src</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target=".phpunit/report/junit.xml" />
<log type="coverage-clover" target=".phpunit/clover.xml" />
<log type="coverage-html" target=".phpunit/code-coverage" charset="UTF-8" highlight="true" lowUpperBound="50" highLowerBound="80" />
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
<php>
<ini name="display_errors" value="On" />
<ini name="error_reporting" value="32767" />
<ini name="memory_limit" value="1G" />
</php>
<testsuites>
<testsuite name="Unit Tests">
<directory>tests/unit</directory>
<directory>tests/integration</directory>
</testsuite>
</testsuites>
</phpunit>