PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   pH7 PHP Web App Boilerplate   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: pH7 PHP Web App Boilerplate
Start a Web app development using boilerplate code
Author: By
Last change:
Date: 1 year ago
Size: 1,004 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="vendor/autoload.php"> <testsuites> <testsuite name="pH7Boilerplate Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src</directory> </whitelist> </filter> <logging> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true" /> <log type="coverage-html" target="coverage" /> <log type="coverage-clover" target="coverage/clover.xml" /> </logging> <php> <env name="env" value="test" /> </php> </phpunit>