-
-
Save ferdynator/73a8dc119b757687b75c to your computer and use it in GitHub Desktop.
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" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" | |
syntaxCheck="false" | |
bootstrap= "app/bootstrap.php" > | |
<testsuites> | |
<testsuite name="Project Test Suite"> | |
<directory>src/VendorName/AppName/Tests</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<directory>src</directory> | |
<exclude> | |
<directory>src/VendorName/AppName/Tests</directory> | |
<directory>src/VendorName/AppName/sass</directory> | |
</exclude> | |
</whitelist> | |
</filter> | |
<logging> | |
<log type="coverage-html" target="app/build/coverage" title="Project Coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/> | |
<log type="coverage-clover" target="app/build/logs/clover.xml"/> | |
<log type="junit" target="app/build/logs/junit.xml" logIncompleteSkipped="false"/> | |
</logging> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment