PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Stefan Kientzler   SVG Creator   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: SVG Creator
Compose vectorial graphics and generate SVG files
Author: By
Last change: added setClipPath() method
Date: 22 days ago
Size: 990 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/9.3/phpunit.xsd" verbose="true" colors="true" bootstrap="autoloader.php" cacheResult="false"> <coverage> <include> <directory suffix=".php">SKien/SVGCreator</directory> </include> <report> <clover outputFile="./clover.xml"/> <html outputDirectory="Tests/SKien/SVGCreator/coverage"/> <text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/> <!-- <text outputFile="./coverage.txt" showUncoveredFiles="true" showOnlySummary="true"/> --> </report> </coverage> <testsuites> <testsuite name="SVGCreator"> <directory>Tests/SKien/SVGCreator</directory> </testsuite> </testsuites> <logging/> <php> <server name="PHP_SELF" value="test.php"/> <server name="QUERY_STRING" value="action=edit"/> </php> </phpunit>