Skip to content

Instantly share code, notes, and snippets.

@bloatfan
Created February 20, 2017 08:35
Show Gist options
  • Save bloatfan/f55f999159180ca5482e37f650be592e to your computer and use it in GitHub Desktop.
Save bloatfan/f55f999159180ca5482e37f650be592e to your computer and use it in GitHub Desktop.
phpunit.xml.dist
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix="ServiceProvider.php">src/</directory>
<directory suffix="Exception.php">src/</directory>
<directory>src/Encryption</directory>
<directory>src/Support</directory>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_RUNNING" value="true" />
</php>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment