Login   Register  
PHP Classes
elePHPant
Icontem

File: phpunit.xml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Gjero Krsteski  >  PIMF  >  phpunit.xml  >  Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PIMF
Framework for Web application development
Author: By
Last change: add view-adapters for #twig and #haanga #crodas #gallir
Date: 2013-01-24 11:08
Size: 758 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
  convertErrorsToExceptions="true"
  convertNoticesToExceptions="true"
  convertWarningsToExceptions="true"
  colors="true"
  processIsolation="false"
  stopOnFailure="true"
  syntaxCheck="true"
  backupGlobals="false"
  backupStaticAttributes="false"
  forceCoversAnnotation="false"
  mapTestClassNameToCoveredClassName="false"
  bootstrap="bootstrap.php">

  <testsuites>
    <testsuite name="Pimf">
      <directory suffix="Test.php">tests</directory>
    </testsuite>
  </testsuites>

  <filter>
    <whitelist addUncoveredFilesFromWhitelist="true">
      <directory suffix=".php">core</directory>
      <exclude>
       <file>bootstrap.php</file>
      </exclude>
    </whitelist>
  </filter>

</phpunit>