PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Wesley Silva   Data Processor   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Data Processor
Import and export data from XLSX, ODS or CSV files
Author: By
Last change:
Date: 10 months ago
Size: 1,002 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.1/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" > <testsuites> <testsuite name="DataProcessor Unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="DataProcessor Feature"> <directory>tests/Feature</directory> </testsuite> </testsuites> <source> <include> <directory>src</directory> </include> </source> <groups> <exclude> <group>benchmark</group> </exclude> </groups> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_STORE" value="array"/> <env name="DB_DATABASE" value="testing"/> <env name="QUEUE_CONNECTION" value="sync"/> <env name="SESSION_DRIVER" value="array"/> </php> </phpunit>