Skip to content

Instantly share code, notes, and snippets.

@eduardo-matos
Created January 19, 2013 11:29
Show Gist options
  • Save eduardo-matos/4572177 to your computer and use it in GitHub Desktop.
Save eduardo-matos/4572177 to your computer and use it in GitHub Desktop.
PHPUnit Configuration
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="App Tests">
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment