Created
August 22, 2010 19:12
-
-
Save caefer/544149 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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