mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-29 16:36:07 +03:00
22 lines
617 B
Plaintext
22 lines
617 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit bootstrap="vendor/autoload.php"
|
||
|
colors="true"
|
||
|
processIsolation="false"
|
||
|
stopOnFailure="false"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true">
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="Mailgun test suite">
|
||
|
<directory>tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|