PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Italo Lelis de Vietro   Collections PHP Library   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Collections PHP Library
Manipulate collections of values
Author: By
Last change:
Date: 9 years ago
Size: 1,048 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" syntaxCheck="false" bootstrap="./tests/bootstrap.php" > <testsuites> <testsuite name="Collections Test Suites"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <directory>./tests/</directory> <directory>./vendor</directory> </exclude> </whitelist> </filter> <logging> <log type="coverage-html" target="build/coverage" title="Collection Coverage" charset="UTF-8" yui="true" highlight="true" /> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> </phpunit>