PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Leonardo Di Sarli   PHP Cache Database Results Library   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Cache Database Results Library
Cache database query results in a Redis server
Author: By
Last change:
Date: 8 months ago
Size: 1,200 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Application Test Suite"> <directory suffix="Test.php">./tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> </php> <logging> <log type="coverage-html" target="coverage/" lowUpperBound="35" highLowerBound="70"/> <log type="coverage-text" target="php://stdout" lowUpperBound="35" highLowerBound="70"/> <log type="testdox-text" target="php://stdout" showUncoveredFiles="false"/> <log type="coverage-clover" target="coverage/coverage.xml"/> <log type="junit" target="coverage/logfile.xml"/> </logging> </phpunit>