PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Slawomir Kaleta   Dframe Framework   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Dframe Framework
Modular MVC based PHP Web framework
Author: By
Last change: Update of phpunit.xml
Date: 3 years ago
Size: 887 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/Bootstrap.php" colors="true"> <testsuites> <testsuite name="AppTests"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src</directory> </whitelist> </filter> <logging> <log type="junit" target="build/report.junit.xml"/> <log type="coverage-html" target="build/coverage"/> <log type="coverage-text" target="build/coverage.txt"/> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> <php> <const name="APP_DIR" value=""/> <const name="SALT" value="RaNdOmTeSt"/> <const name="HTTP_HOST" value="dframeframework.com"/> <const name="MOD_REWRITE" value="true"/> </php> </phpunit>