2011-02-27 22:32:13 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-02-28 22:30:22 -06:00
|
|
|
<phpunit bootstrap="./tests/bootstrap.php"
|
2011-02-27 22:32:13 -06:00
|
|
|
colors="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Guzzle">
|
2011-02-28 22:30:22 -06:00
|
|
|
<directory>./tests/Guzzle/Tests</directory>
|
2011-02-27 22:32:13 -06:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2011-04-06 11:11:04 -05:00
|
|
|
<directory suffix=".php">./src/Guzzle</directory>
|
2011-11-13 19:07:40 -06:00
|
|
|
<exclude>
|
|
|
|
<directory suffix="Interface.php">./src/Guzzle</directory>
|
|
|
|
<file>./src/Guzzle/Http/HttpException.php</file>
|
|
|
|
</exclude>
|
2011-02-27 22:32:13 -06:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
|
2011-04-06 11:11:04 -05:00
|
|
|
</phpunit>
|