1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-23 17:44:02 +01:00
guzzle/build/template/phpunit.xml.dist
2011-11-01 22:57:15 -05:00

38 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
-- You must ensure that the values in the php sections are correct before
-- attempting to run the tests.
-->
<phpunit bootstrap="./Tests/bootstrap.php" colors="true">
<php>
<!--
-- Change the following value to the path of your Guzzle installation
-- e.g. /Users/michael/projects/guzzle
-->
<server name="GUZZLE" value="/path/to/guzzle" />
<!--
-- Guzzle tries to figure out the path to mock files automatically.
-- Set the following value to "1" if your Guzzle service contains
-- multiple clients under one service namespace (e.g. Aws\S3, Aws\Sqs)
-->
<server name="GUZZLE_SERVICE_MULTI" value="0" />
</php>
<testsuites>
<testsuite name="guzzle-service">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./docs</directory>
</exclude>
</whitelist>
</filter>
</phpunit>