PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Unay Santisteban   PHP Domain Driven Design Model   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Domain Driven Design Model
Value objects, entities and aggregates with traits
Author: By
Last change:
Date: 3 months ago
Size: 684 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache"> <coverage> <report> <clover outputFile="./coverage.xml"/> </report> </coverage> <testsuites> <testsuite name="unit"> <directory>./tests</directory> </testsuite> </testsuites> <logging/> <source> <include> <directory suffix=".php">./src</directory> </include> </source> </phpunit>