PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Lars Moelleken   PHP httpful Request   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP httpful Request
Send and process HTTP requests using handler class
Author: By
Last change:
Date: 3 years ago
Size: 998 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" verbose="true" > <testsuite name="httpful"> <directory>tests</directory> </testsuite> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src/</directory> </whitelist> </filter> <php> <const name="WEB_SERVER_HOST" value="localhost" /> <const name="WEB_SERVER_PORT" value="1349" /> <const name="WEB_SERVER_DOCROOT" value="./tests/static" /> <env name="http_proxy" value="" /> </php> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> </phpunit>