Last active
August 29, 2015 14:21
-
-
Save adammbalogh/608d8478b412b034d232 to your computer and use it in GitHub Desktop.
from flysystem
This file contains 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="false" | |
bootstrap="tests/bootstrap.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" | |
syntaxCheck="true" | |
verbose="true"> | |
<testsuites> | |
<testsuite name="package-name/tests"> | |
<directory>./tests/</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<directory suffix=".php">./src/</directory> | |
</whitelist> | |
</filter> | |
<logging> | |
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> | |
<log type="coverage-html" target="coverage" showUncoveredFiles="true"/> | |
<log type="coverage-clover" target="coverage.xml" showUncoveredFiles="true"/> | |
</logging> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
About
backupGlobals
andbackupStaticAttributes
Docs