Skip to content

Instantly share code, notes, and snippets.

@juzow13
Created November 11, 2017 00:19
Show Gist options
  • Save juzow13/5f7a4a7619cede27ab83b7e2953d65c9 to your computer and use it in GitHub Desktop.
Save juzow13/5f7a4a7619cede27ab83b7e2953d65c9 to your computer and use it in GitHub Desktop.
minimum phpunit to start with
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./tests/phpunit.bootstrap.php"
processIsolation="false"
verbose="true"
strict="false"
colors="true">
<testsuites>
<testsuite name="PHPUnit">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage"/>
</logging>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment