123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit
- backupGlobals="false"
- backupStaticAttributes="false"
- syntaxCheck="false"
- bootstrap="tests/bootstrap.php"
- colors="true"
- >
- <testsuites>
- <testsuite name="Solarium">
- <directory suffix="Test.php">tests</directory>
- </testsuite>
- </testsuites>
- <logging>
- <log type="coverage-html" target="build/coverage" title="Solarium"
- charset="UTF-8" yui="true" highlight="true"
- lowUpperBound="35" highLowerBound="70"/>
- <log type="coverage-clover" target="build/logs/clover.xml"/>
- <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
- </logging>
- <filter>
- <whitelist>
- <directory suffix=".php">library</directory>
- <exclude>
- <file>library/Solarium/Autoloader.php</file>
- </exclude>
- </whitelist>
- </filter>
- </phpunit>
|