Blame view

sources/3rdparty/rackspace/php-opencloud/phpunit.xml.dist 1.16 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  <?xml version="1.0" encoding="UTF-8"?>
  <phpunit colors="false" verbose="false" bootstrap="./tests/bootstrap.php">
  
      <testsuites>
          <testsuite name="OpenCloud">
              <directory>./tests/OpenCloud/Tests</directory>
          </testsuite>
      </testsuites>
  
      <filter>
          <whitelist processUncoveredFilesFromWhitelist="true">
              <directory suffix=".php">./lib/OpenCloud</directory>
              <exclude>
                  <directory suffix="Exception.php">./lib/OpenCloud/CloudMonitoring/Exception</directory>
                  <directory suffix="Error.php">./lib/OpenCloud/Common/Exceptions</directory>
                  <directory suffix="Exception.php">./lib/OpenCloud/Common/Exceptions</directory>
                  <directory suffix="Exception.php">./lib/OpenCloud/Compute/Exception</directory>
                  <directory suffix="Exception.php">./lib/OpenCloud/ObjectStore/Exception</directory>
                  <directory suffix="Exception.php">./lib/OpenCloud/Queues/Exception</directory>
              </exclude>
          </whitelist>
      </filter>
  
      <logging>
          <log type="coverage-clover" target="./build/logs/clover.xml" />
      </logging>
  
  </phpunit>