PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP Plain Object with Class Variables Set from Array Values   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Plain Object with Class Variables Set from Array Values
Initialize data objects from arrays of values
Author: By
Last change:
Date: 11 months ago
Size: 846 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="vendor/autoload.php" executionOrder="depends,defects" beStrictAboutOutputDuringTests="true" failOnRisky="true" failOnWarning="true" cacheDirectory=".tmp/.phpunit/" beStrictAboutCoverageMetadata="true" > <testsuites> <testsuite name="default"> <directory>./tests</directory> </testsuite> </testsuites> <coverage/> <source> <include> <directory suffix=".php">./src</directory> </include> <exclude> <directory suffix=".php">./src/Attributes</directory> </exclude> </source> </phpunit>