~tcuthbert/wordpress/openstack-objectstorage

« back to all changes in this revision

Viewing changes to vendor/phpunit/php-timer/phpunit.xml.dist

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

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