PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova Framework   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Luminova Framework
PHP Luminova framework: simple, powerful MVC/HMVC.
Author: By
Last change:
Date: 5 months ago
Size: 2,011 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" bootstrap="system/plugins/autoload.php" backupGlobals="false" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" cacheResultFile="builds/.phpunit.cache/test-results" colors="true" columns="max" failOnRisky="true" failOnWarning="true" verbose="true"> <coverage cacheDirectory="builds/.phpunit.cache/code-coverage" processUncoveredFiles="true" ignoreDeprecatedCodeUnits="true"> <include> <directory suffix=".php">system</directory> </include> <exclude> <directory>system/plugins</directory> </exclude> <report> <clover outputFile="builds/logs/clover.xml"/> </report> </coverage> <testsuites> <testsuite name="System"> <directory>tests</directory> </testsuite> </testsuites> <extensions> <extension class="Nexus\PHPUnit\Extension\Tachycardia"> <arguments> <array> <element key="timeLimit"> <double>0.50</double> </element> <element key="reportable"> <integer>30</integer> </element> <element key="precision"> <integer>2</integer> </element> <element key="tabulate"> <boolean>false</boolean> </element> </array> </arguments> </extension> </extensions> <php> <const name="HOMEPATH" value="./"/> <const name="PUBLICPATH" value="./public/"/> <env name="APP_ENV" value="dev"/> </php> </phpunit>