PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   PHP Not Allowed   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Not Allowed
Detect and filter unwanted information
Author: By
Last change: Fixed issue with phpunit XML file

Fixed "Element phpunit: Character content other than whitespace is not allowed because the content type is element-only."
Date: 4 years ago
Size: 648 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="vendor/autoload.php" verbose="true" colors="true"> <testsuites> <testsuite name="NotAllowed"> <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> </phpunit>