PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Filip Štamcar   Eventy   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Eventy
Register hooks and run associated to event actions
Author: By
Last change:
Date: 5 years ago
Size: 1,222 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/7.1/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Unit Tests"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="false"> <directory suffix=".php">./src/</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="./build/coverage/" /> <log type="coverage-text" target="./build/coverage.txt" /> <log type="coverage-clover" target="./build/clover.xml" /> <log type="testdox-html" target="./build/testdox.html" /> <log type="testdox-text" target="./build/testdox.txt" /> </logging> </phpunit>