PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Rodolfo Berrios Arce   Parameter   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Parameter
Validate function parameters with PHP attributes
Author: By
Last change:
Date: 15 days ago
Size: 1,091 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" failOnRisky="true" failOnWarning="true" testdox="false" executionOrder="default" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" cacheDirectory=".phpunit.cache"> <testsuites> <testsuite name="Chevere Test suite"> <directory suffix="Test.php">tests/</directory> </testsuite> </testsuites> <logging> <junit outputFile="build/logs/junit.xml"/> </logging> <coverage ignoreDeprecatedCodeUnits="true"> <report> <clover outputFile="build/logs/clover.xml"/> <html outputDirectory="build/logs/html" lowUpperBound="50" highLowerBound="90"/> <xml outputDirectory="build/logs/xml-coverage"/> </report> </coverage> <source> <include> <directory suffix=".php">src/</directory> </include> <exclude> <directory suffix=".php">src/**/Exceptions/</directory> </exclude> </source> </phpunit>