Skip to content

Instantly share code, notes, and snippets.

@erickleandrolima
Created June 24, 2015 20:18
Show Gist options
  • Save erickleandrolima/9a11155726924a53576a to your computer and use it in GitHub Desktop.
Save erickleandrolima/9a11155726924a53576a to your computer and use it in GitHub Desktop.
Xml Skeleton for PHPUnit
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="false">
<testsuites>
<testsuite name="Pagination">
<directory>test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment