Skip to content

Instantly share code, notes, and snippets.

@adrientiburce
Created November 26, 2019 22:03
Show Gist options
  • Save adrientiburce/8fe267579de7c9514ca6fe7f057c570a to your computer and use it in GitHub Desktop.
Save adrientiburce/8fe267579de7c9514ca6fe7f057c570a to your computer and use it in GitHub Desktop.
<phpunit colors="true">
<testsuites>
<testsuite name="Manager test suites">
<directory>./Tests/Manager</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html"
target="./log/codeCoverage"
lowUpperBound="40"
highLowerBound="75"
showUncoveredFiles="false"/>
</logging>
<filter>
<!-- files with at least one line executed appears in report-->
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./Manager</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment