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 (654B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <phpunit backupGlobals="false"
      3          bootstrap="vendor/autoload.php"
      4          beStrictAboutTestsThatDoNotTestAnything="true"
      5          beStrictAboutOutputDuringTests="true"
      6          beStrictAboutTodoAnnotatedTests="true"
      7          checkForUnintentionallyCoveredCode="true"
      8          forceCoversAnnotation="true"
      9          verbose="true">
     10  <testsuites>
     11   <testsuite name="exporter">
     12    <directory>tests</directory>
     13   </testsuite>
     14  </testsuites>
     15  <filter>
     16   <whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
     17    <directory>src</directory>
     18   </whitelist>
     19  </filter>
     20 </phpunit>
     21