sebastianbergmann / phploc

A tool for quickly measuring the size of a PHP project.

This URL has Read+Write access

phploc / phpunit.xml.dist
100644 17 lines (15 sloc) 0.427 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
 
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         syntaxCheck="false">
  <testsuites>
    <testsuite name="PHPLOC">
      <directory suffix="Test.php">Tests</directory>
    </testsuite>
  </testsuites>
  <filter>
    <whitelist addUncoveredFilesFromWhitelist="true">
      <directory suffix=".php">PHPLOC</directory>
    </whitelist>
  </filter>
</phpunit>