PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Vitaly   Queasy PHP Config   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Queasy PHP Config
Read a configuration from files in several formats
Author: By
Last change:
Date: 2 years ago
Size: 1,074 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" executionOrder="random" resolveDependencies="true"> <testsuites> <testsuite name="Unit"> <directory suffix="Test.php">./tests/src/</directory> </testsuite> </testsuites> <logging> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true" /> <log type="coverage-clover" target="coverage.xml" showUncoveredFiles="false" /> </logging> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src/</directory> </whitelist> </filter> </phpunit>