PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Temuri Takalandze   PHP JSON Object Create   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP JSON Object Create
Fill PHP objects from a JSON string
Author: By
Last change:
Date: 3 years ago
Size: 897 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" > <testsuites> <testsuite name="JSON to POPO Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory>./src/</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="./coverage" lowUpperBound="20" highLowerBound="50" /> <log type="coverage-clover" target="clover.xml" /> </logging> </phpunit>