forked from getyoti/yoti-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
executable file
·30 lines (30 loc) · 988 Bytes
/
phpunit.xml
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
bootstrap="tests/bootstrap.php"
stopOnFailure="false">
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=1"/>
</php>
<testsuites>
<testsuite name="Yoti Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory>src/Protobuf</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
</logging>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>