Skip to content

Instantly share code, notes, and snippets.

@alnutile
Created June 18, 2017 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alnutile/30e6cc1b7b86d0bb4749961ba863d2ef to your computer and use it in GitHub Desktop.
Save alnutile/30e6cc1b7b86d0bb4749961ba863d2ef to your computer and use it in GitHub Desktop.
<?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