phpunit.xml.dist
changeset 34 21fab44f46fe
child 69 d76e5e0ded24
equal deleted inserted replaced
30:d2fba1e3b94b 34:21fab44f46fe
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 
       
     3 <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
       
     4 <phpunit
       
     5     backupGlobals               = "false"
       
     6     backupStaticAttributes      = "false"
       
     7     colors                      = "true"
       
     8     convertErrorsToExceptions   = "true"
       
     9     convertNoticesToExceptions  = "true"
       
    10     convertWarningsToExceptions = "true"
       
    11     processIsolation            = "false"
       
    12     stopOnFailure               = "false"
       
    13     syntaxCheck                 = "false"
       
    14     bootstrap                   = "../../../../../app/bootstrap.php.cache" >
       
    15 
       
    16     <testsuites>
       
    17         <testsuite name="Project Test Suite">
       
    18             <directory>Tests</directory>
       
    19         </testsuite>
       
    20     </testsuites>
       
    21 
       
    22     <!--
       
    23     <php>
       
    24         <server name="KERNEL_DIR" value="/path/to/your/app/" />
       
    25     </php>
       
    26     -->
       
    27 
       
    28     <!--filter>
       
    29         <whitelist>
       
    30             <directory>../src</directory>
       
    31             <exclude>
       
    32                 <directory>../src/*/*Bundle/Resources</directory>
       
    33                 <directory>../src/*/*Bundle/Tests</directory>
       
    34                 <directory>../src/*/Bundle/*Bundle/Resources</directory>
       
    35                 <directory>../src/*/Bundle/*Bundle/Tests</directory>
       
    36             </exclude>
       
    37         </whitelist>
       
    38     </filter-->
       
    39 
       
    40 </phpunit>