PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Ogbemudia Osayawe   PHP TDD Tutorial Bug Report Application   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP TDD Tutorial Bug Report Application
Bug report application to show the TDD approach
Author: By
Last change:
Date: 2 years ago
Size: 602 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8" ?> <phpunit bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertWarningsToExceptions="true" convertNoticesToExceptions="true" stopOnFailure="false"> <testsuites> <testsuite name="Unit"> <directory>Tests/Unit</directory> </testsuite> <testsuite name="Functional"> <directory>Tests/Functional</directory> </testsuite> </testsuites> <php> <const name="PHPUNIT_RUNNING" value="true" /> </php> </phpunit>