mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-21 20:16:03 +03:00
b725ab728e
* Adding PHP7 type annotations * cs * Moved HttpClientConfigurator and RequestBuilder to Mailgun\HttpClient namespace * fixing tests * Rebased and fixed tests * minors * cs * Bugfixes * Typo
22 lines
617 B
XML
22 lines
617 B
XML
<?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>
|