Skip to content

Instantly share code, notes, and snippets.

@caefer
Created August 22, 2010 19:12
Show Gist options
  • Save caefer/544149 to your computer and use it in GitHub Desktop.
Save caefer/544149 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="true"
bootstrap="test/bootstrap/unit.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
verbose="true"
strict="true">
<php>
<server name="SYMFONY" value="../symfony/"/>
</php>
<testsuites>
<testsuite name="sfImageTransformExtraPlugin Suite">
<directory>./test/unit/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="../build/coverage" title="sfImageTransformExtraPlugin"
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 addUncoveredFilesFromWhitelist="true">
<directory suffix=".class.php">./lib/</directory>
<directory suffix=".class.php">./config/</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment