mailgun-php/phpunit.xml.dist

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-07-22 22:11:01 -07:00
<?xml version="1.0" encoding="UTF-8"?>
2016-08-10 17:06:27 +02:00
<phpunit bootstrap="vendor/autoload.php"
2013-07-22 22:11:01 -07:00
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
<testsuites>
<testsuite name="all">
2016-08-10 17:06:27 +02:00
<directory>tests</directory>
2013-07-22 22:11:01 -07:00
</testsuite>
2016-10-27 01:34:27 -05:00
<testsuite name="unit">
<directory>tests</directory>
<exclude>tests/Integration</exclude>
<exclude>test/Functional</exclude>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/Functional</directory>
</testsuite>
2013-07-22 22:11:01 -07:00
</testsuites>
2016-10-27 01:34:27 -05:00
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
2013-07-22 22:11:01 -07:00
</phpunit>