mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-15 12:33:14 +03:00
29 lines
703 B
XML
29 lines
703 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
colors="true">
|
|
<php>
|
|
<const name="PHPUNIT_TESTSUITE" value="true"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="PHPUnit Mock Objects">
|
|
<directory suffix="Test.php">../Tests</directory>
|
|
<directory suffix=".phpt">../Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="coverage-text" target="php://stdout"/>
|
|
</logging>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../PHPUnit</directory>
|
|
<exclude>
|
|
<file>../PHPUnit/Framework/MockObject/Autoload.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|