PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Angel Campos   Kubernetes Resource generator   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Kubernetes Resource generator
Generate a configuration for a Kubernetes resource
Author: By
Last change:
Date: 1 year ago
Size: 1,751 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.5/phpunit.xsd" bootstrap="vendor/autoload.php" cacheResultFile=".phpunit.cache/test-results" colors="true" executionOrder="depends,defects" forceCoversAnnotation="true" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" convertDeprecationsToExceptions="true" failOnRisky="true" failOnWarning="true" noInteraction="true" processIsolation="true" testdox="true" verbose="true"> <testsuites> <testsuite name="unit"> <directory>tests/Unit</directory> </testsuite> </testsuites> <coverage cacheDirectory=".phpunit.cache/code-coverage" disableCodeCoverageIgnore="true" ignoreDeprecatedCodeUnits="true" includeUncoveredFiles="true" pathCoverage="false" processUncoveredFiles="true"> <include> <directory suffix=".php">src</directory> </include> <report> <cobertura outputFile="build/coverage/cobertura.xml"/> <clover outputFile="build/coverage/phpunit.coverage.xml"/> <html outputDirectory="build/coverage/html-coverage" lowUpperBound="50" highLowerBound="90"/> </report> </coverage> <logging> <junit outputFile="build/junit.xml"/> <testdoxHtml outputFile="build/testdox.html"/> </logging> <php> <ini name="xdebug.mode" value="coverage"/> </php> </phpunit>