Created
June 18, 2017 00:46
-
-
Save alnutile/30e6cc1b7b86d0bb4749961ba863d2ef 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 bootstrap="vendor/autoload.php" | |
backupGlobals="false" | |
backupStaticAttributes="false" | |
colors="true" | |
verbose="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false"> | |
<testsuites> | |
<testsuite name="alnutile Test Suite"> | |
<directory>tests</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<directory suffix=".php">src/</directory> | |
</whitelist> | |
</filter> | |
<logging> | |
<log | |
type="tap" | |
target="build/report.tap" | |
lowUpperBound="35" | |
highLowerBound="70" | |
/> | |
<log | |
type="junit" | |
target="build/report.junit.xml" | |
lowUpperBound="35" | |
highLowerBound="70" | |
/> | |
<log | |
type="coverage-clover" | |
target="build/logs/clover.xml" | |
lowUpperBound="35" | |
highLowerBound="70" | |
/> | |
<log | |
type="coverage-html" | |
target="build/coverage" | |
charset="UTF-8" | |
yui="true" | |
lowUpperBound="35" | |
highLowerBound="70" | |
showUncoveredFiles="true" | |
/> | |
<log | |
type="coverage-text" | |
target="php://stdout" | |
lowUpperBound="35" | |
highLowerBound="70" | |
/> | |
</logging> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment