PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Alexey Dodonov   Mezon Variadic Model   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Mezon Variadic Model
Set model objects implemented with services
Author: By
Last change:
Date: 2 years ago
Size: 896 bytes
 

Contents

Class file image Download
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.4/phpunit.xsd" backupGlobals="false" colors="true" bootstrap='./vendor/autoload.php'> <php> <ini name="error_reporting" value="-1" /> </php> <testsuites> <testsuite name="all"> <directory suffix="UnitTest.php">./Mezon/</directory> <directory suffix="UnitTest.php">./vendor/mezon/</directory> </testsuite> </testsuites> <filter> <whitelist addUncoveredFilesFromWhitelist="false"> <directory>./</directory> <exclude> <directory suffix=".php">./Mezon/Service/Tests</directory> <directory>./vendor</directory> </exclude> </whitelist> </filter> <logging> <log type="coverage-html" target="./tmp/coverage-phpunit.html"></log> <log type="coverage-text" target="php://stdout" showOnlySummary="true"></log> </logging> </phpunit>