Skip to content

Instantly share code, notes, and snippets.

@shanecp
Created June 4, 2014 02: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 shanecp/71ae76f6a6d565cf0730 to your computer and use it in GitHub Desktop.
Save shanecp/71ae76f6a6d565cf0730 to your computer and use it in GitHub Desktop.
PHPUnit config file - Test configuration file for PHP
<phpunit bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailiure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="All tests">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment