PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Sergii Pryz   Transfer Object   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Transfer Object
Generate transfer objects using property hooks
Author: By
Last change: Cleared up phpcs and phpunit configurations
Date: 6 days ago
Size: 1,136 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/11.4/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" stderr="true" beStrictAboutTestsThatDoNotTestAnything="false" displayDetailsOnPhpunitDeprecations="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true"> <php> <ini name="error_reporting" value="-1" /> </php> <testsuites> <testsuite name="UnitTests"> <directory>tests/unit</directory> </testsuite> <testsuite name="IntegrationTests"> <directory>tests/integration</directory> </testsuite> </testsuites> <source> <include> <directory suffix=".php">src</directory> <directory suffix=".php">doc/samples</directory> </include> </source> </phpunit>