PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   PHP Commission Calculator From CSV File   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Commission Calculator From CSV File
Get transactions from file and compute commissions
Author: By
Last change:
Date: 1 year ago
Size: 916 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.readthedocs.io/en/9.5/configuration.html --> <phpunit bootstrap="vendor/autoload.php" colors="true" verbose="true" failOnRisky="true" failOnWarning="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" executionOrder="random" resolveDependencies="true"> <testsuites> <testsuite name="PHPUnit Test"> <directory>tests</directory> </testsuite> </testsuites> <coverage cacheDirectory="./coverage" includeUncoveredFiles="true" processUncoveredFiles="true" pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true"> <include> <directory>./src</directory> </include> </coverage> </phpunit>