HummingBirdAnimeClient/phpunit.xml

24 lines
666 B
XML
Raw Normal View History

2016-08-01 14:38:23 -04:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
2017-01-12 15:41:20 -05:00
colors="true"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
2016-08-01 14:38:23 -04:00
>
2017-01-12 15:41:20 -05:00
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="AnimeClient">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<server name="HTTP_USER_AGENT" value="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0" />
<server name="HTTP_HOST" value="localhost" />
<server name="SERVER_NAME" value="localhost" />
<server name="REQUEST_URI" value="/" />
<server name="REQUEST_METHOD" value="GET" />
</php>
2016-08-01 14:38:23 -04:00
</phpunit>