~tcuthbert/wordpress/openstack-objectstorage

« back to all changes in this revision

Viewing changes to vendor/phpunit/php-code-coverage/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
<phpunit backupGlobals="false"
 
3
         backupStaticAttributes="false"
 
4
         bootstrap="vendor/autoload.php">
 
5
  <testsuites>
 
6
    <testsuite name="PHP_CodeCoverage">
 
7
      <directory suffix="Test.php">tests/PHP</directory>
 
8
    </testsuite>
 
9
  </testsuites>
 
10
 
 
11
  <logging>
 
12
    <log type="coverage-html" target="build/coverage"/>
 
13
    <log type="coverage-clover" target="build/logs/clover.xml"/>
 
14
    <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
 
15
  </logging>
 
16
 
 
17
  <filter>
 
18
    <whitelist addUncoveredFilesFromWhitelist="true">
 
19
      <directory suffix=".php">src</directory>
 
20
    </whitelist>
 
21
  </filter>
 
22
</phpunit>
 
23