PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of DeGraciaMathieu   Interface Testing   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Interface Testing
Demonstrate how to test an interface with PHPUnit
Author: By
Last change:
Date: 12 days ago
Size: 625 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" colors="true" failOnRisky="true" failOnWarning="true" cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerWarnings="true" > <testsuites> <testsuite name="tests"> <directory>tests/Unit</directory> </testsuite> </testsuites> <coverage/> <source> <include> <directory suffix=".php">app</directory> </include> </source> </phpunit>