PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Alex McArrow   PHP Data Mapper   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Data Mapper
Map array values with data mapper filters
Author: By
Last change:
Date: 1 year ago
Size: 1,054 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" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <coverage> <include> <directory suffix=".php">src</directory> </include> <report> <clover outputFile="build/clover.xml" /> <html outputDirectory="build/coverage" /> <xml outputDirectory="build/coverage-xml" /> </report> </coverage> <testsuites> <testsuite name="DataMapper Tests"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <logging> <junit outputFile="build/junit.xml" /> </logging> </phpunit>