PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHP HTML Test Case   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HTML Test Case
Extends PHPUnit to test HTML output
Author: By
Last change:
Date: 2 years ago
Size: 604 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit verbose="true" colors="true" bootstrap ="autoloader.php"> <testsuites> <testsuite name="HtmlTestCase"> <directory>ExampleTest</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">SKien/Test</directory> </whitelist> </filter> <logging> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/> <log type="coverage-html" target="ExampleTest/coverage"/> </logging> </phpunit>