PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Unsplash Helper   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Unsplash Helper
Display images from Unsplash.com
Author: By
Last change: Remove obsolete phpunit setting

PHPUnit doesn't use syntaxCheck for many years
Date: 6 years ago
Size: 918 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php"> <testsuites> <testsuite name="pH7 Unsplash Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src/Image</directory> </whitelist> </filter> <logging> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true" /> <log type="coverage-html" target="coverage" /> <log type="coverage-clover" target="coverage/clover.xml" /> </logging> </phpunit>