gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

phpunit.xml.dist (931B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <phpunit backupGlobals="false"
      4          backupStaticAttributes="false"
      5          syntaxCheck="false"
      6          bootstrap="PHP/CodeCoverage/Autoload.php">
      7   <testsuites>
      8     <testsuite name="php-code-coverage">
      9       <directory suffix="Test.php">Tests/PHP</directory>
     10     </testsuite>
     11   </testsuites>
     12 
     13   <logging>
     14     <log type="coverage-html" target="build/coverage" title="PHP_CodeCoverage"
     15          charset="UTF-8" yui="true" highlight="true"
     16          lowUpperBound="35" highLowerBound="70"/>
     17     <log type="coverage-clover" target="build/logs/clover.xml"/>
     18     <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
     19   </logging>
     20 
     21   <filter>
     22     <whitelist addUncoveredFilesFromWhitelist="true">
     23       <directory suffix=".php">PHP</directory>
     24       <exclude>
     25         <file>PHP/CodeCoverage/Autoload.php</file>
     26       </exclude>
     27     </whitelist>
     28   </filter>
     29 </phpunit>