PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Ankit Jain   Registration Module   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Registration Module
Register and login users in MySQL database records
Author: By
Last change:
Date: 6 years ago
Size: 1,187 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="true" 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="RegistrationModule Test Suite"> <directory suffix=".php">./tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./source</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>