PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Jacobo Cantorna Cigarrán   Laravel Toon   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Toon
Encode and decode values in the TOON format
Author: By
Last change:
Date: 5 months ago
Size: 1,113 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/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" beStrictAboutCoveredCodeUnits="true" beStrictAboutTestsThatDoNotTestAnything="true" colors="true" failOnRisky="true" failOnWarning="true" verbose="true"> <testsuites> <testsuite name="Unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="Feature"> <directory>tests/Feature</directory> </testsuite> <testsuite name="Integration"> <directory>tests/Integration</directory> </testsuite> </testsuites> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">src</directory> </include> <exclude> <directory suffix="ServiceProvider.php">src</directory> <directory suffix="Facade.php">src</directory> </exclude> </coverage> </phpunit>