PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Ankit Jain   Hacker Earth API   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Hacker Earth API
Check code of a given language using Hacker Earth
Author: By
Last change:
Date: 6 years ago
Size: 1,172 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" failOnRisky="true" failOnWarning="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true"> <testsuites> <testsuite name="HackerEarth-Api Tests"> <directory suffix=".php">./tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="phpunit" showUncoveredFiles="true" showOnlySummary="false" /> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="false" /> </logging> </phpunit>