PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Andrew Male   Config Migration   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Config Migration
Migrate configuration files between versions
Author: By
Last change:
Date: 27 days ago
Size: 981 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="Tests/bootstrap.php" colors="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false"> <coverage includeUncoveredFiles="true" processUncoveredFiles="true"> <include> <directory suffix=".php">./Config</directory> </include> <exclude> <directory suffix=".php">./Tests/</directory> </exclude> <report> <clover outputFile="coverage/phpunit.xml"/> <html outputDirectory="coverage/"/> </report> </coverage> <php> <ini name="error_reporting" value="-1"/> </php> <testsuites> <testsuite name="Core"> <directory suffix="Test.php">./Tests/Config</directory> </testsuite> </testsuites> <logging> <junit outputFile="reports/phpunit.xml"/> </logging> </phpunit>