partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

phpunit.xml.dist (1698B)


      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                   = "bootstrap.php.cache" >
     15 
     16     <testsuites>
     17         <testsuite name="Project Test Suite">
     18             <directory>../src/*/*Bundle/Tests</directory>
     19             <directory>../src/*/Bundle/*Bundle/Tests</directory>
     20         </testsuite>
     21     </testsuites>
     22 
     23     <!--
     24     <php>
     25         <server name="KERNEL_DIR" value="/path/to/your/app/" />
     26     </php>
     27     -->
     28 
     29     <logging>
     30         <log type="coverage-html" target="../reports/coverage" lowUpperBound="35"
     31        highLowerBound="70"/>
     32     </logging>
     33 
     34     <filter>
     35         <whitelist>
     36             <directory>../src</directory>
     37             <exclude>
     38                 <directory>../src/*/*Bundle/Resources</directory>
     39                 <directory>../src/*/*Bundle/Tests</directory>
     40                 <directory>../src/*/*Bundle/DataFixtures</directory>
     41                 <directory>../src/*/Bundle/*Bundle/Resources</directory>
     42                 <directory>../src/*/Bundle/*Bundle/Tests</directory>
     43                 <directory>../src/backend</directory>
     44                 <directory>../src/frontend</directory>
     45                 <directory>../src/setup</directory>
     46             </exclude>
     47         </whitelist>
     48     </filter>
     49 
     50 </phpunit>