PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Kamil Dziedzic   Ninja Mutex   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ninja Mutex
Lock resources to prevent simultaneous accesses
Author: By
Last change: Update of phpunit.xml
Date: 6 months ago
Size: 1,375 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" colors="true" verbose="true" cacheResultFile=".phpunit.cache/test-results" executionOrder="depends,defects" beStrictAboutChangesToGlobalState="true" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutTodoAnnotatedTests="true" enforceTimeLimit="true" failOnRisky="true" failOnWarning="true"> <testsuites> <testsuite name="NinjaMutex Test Suite"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <coverage cacheDirectory=".phpunit.cache/code-coverage" disableCodeCoverageIgnore="true" includeUncoveredFiles="true" processUncoveredFiles="true"> <include> <directory suffix=".php">src</directory> </include> <report> <clover outputFile="build/logs/clover.xml"/> <text outputFile="php://stdout" showUncoveredFiles="false" showOnlySummary="false"/> </report> </coverage> </phpunit>