PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Johnny Mast   Redbox PHP CLI Arguments   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Redbox PHP CLI Arguments
Extract command line parameter values
Author: By
Last change: Added phpcs support.
Update code coverage.
Bumped php version to 7.3
Added new tests
Date: 2 years ago
Size: 810 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/misc/bootstrap.php" colors="true" verbose="true" failOnRisky="true" failOnWarning="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" executionOrder="random" resolveDependencies="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">./src</directory> </include> </coverage> <php> <ini name="error_reporting" value="-1"/> </php> <testsuites> <testsuite name="Redbox Cli test suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> </phpunit>