PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Cydrick Nonog   PHP Query Builder for Laravel   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Query Builder for Laravel
Test database queries without accessing a server
Author: By
Last change:
Date: 3 years ago
Size: 1,219 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"> <testsuites> <testsuite name="unit"> <directory>./tests/Unit</directory> </testsuite> <testsuite name="integration"> <directory>./tests/Integration</directory> </testsuite> <testsuite name="all"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> <log type="coverage-html" target="build/html"/> </logging> <php> <env name="APP_ENV" value="testing"/> <ini name="display_errors" value="On" /> <ini name="display_startup_errors" value="On" /> </php> </phpunit>