PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Nathaniel Sherwood   Encase PHP Functional Programming   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Encase PHP Functional Programming
Make functions work as if they are class functions
Author: By
Last change:
Date: 4 years ago
Size: 818 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="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" colors="true" verbose="true" failOnRisky="true" failOnWarning="true" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true" bootstrap="vendor/autoload.php" > <php> <ini name="error_reporting" value="-1" /> </php> <testsuites> <testsuite name="Encase Functional Component Test Suite"> <directory>./Tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <directory>./Tests</directory> <directory>./vendor</directory> </exclude> </whitelist> </filter> </phpunit>