PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Cesar D. Rodas   PHP JSON API Server   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP JSON API Server
Handle REST API requests with functions in scripts
Author: By
Last change:
Date: 7 years ago
Size: 1,061 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> <phpunit backupGlobals = "false" backupStaticAttributes = "false" colors = "true" convertErrorsToExceptions = "true" convertNoticesToExceptions = "true" convertWarningsToExceptions = "true" processIsolation = "false" stopOnError = "true" stopOnFailure = "true" stopOnIncomplete = "true" stopOnSkipped = "true" syntaxCheck = "true" strict = "false" verbose = "true" debug = "true" bootstrap = "tests/bootstrap.php" > <testsuites> <testsuite name="ApiServer"> <directory>tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>src/</directory> </whitelist> </filter> </phpunit>