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 Cesar D. Rodas  >  Autocomplete  >  phpunit.xml  >  Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: First commit
Class: Autocomplete
Suggest words to complete search using edge n-gram
Author: By
Last change:
Date: 2013-09-01 01:34
Size: 1,100 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>

<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
    backupGlobals               = "false"
    backupStaticAttributes      = "false"
    colors                      = "true"
    convertErrorsToExceptions   = "true"
    convertNoticesToExceptions  = "true"
    convertWarningsToExceptions = "true"
    processIsolation            = "false"
    stopOnError                 = "true"
    stopOnFailure               = "true"
    stopOnIncomplete            = "true"
    stopOnSkipped               = "ture"
    syntaxCheck                 = "true"
    strict                      = "false"
    verbose                     = "true"
    debug                       = "true"
    bootstrap                   = "tests/bootstrap.php" >

    <testsuites>
        <testsuite name="tests">
            <directory>tests/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory>tests/</directory>
            <directory>lib/</directory>
        </whitelist>
    </filter>

</phpunit>