forked from LinioPay/idle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
40 lines (35 loc) · 1.35 KB
/
Copy pathphpunit.xml
File metadata and controls
40 lines (35 loc) · 1.35 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.5/phpunit.xsd"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
defaultTestSuite="LinioPay Idle Unit Tests"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php">
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"
file="./vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php">
</listener>
</listeners>
<logging>
<log type="coverage-clover" target="./build/coverage-clover.xml"/>
<log type="coverage-xml" target="./build/coverage-xml"/>
<log type="junit" target="./build/phpunit.junit.xml"/>
<log highLowerBound="100" lowUpperBound="99" type="coverage-html" target="./build/coverage-html"/>
</logging>
<testsuites>
<testsuite name="LinioPay Idle Unit Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>