Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created February 12, 2019 00:09
Show Gist options
  • Save arkadiusjonczek/6e612c194a89add28686c4b3bbafcf2a to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/6e612c194a89add28686c4b3bbafcf2a to your computer and use it in GitHub Desktop.
PHPUnit basic configuration #tags: PHP
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Default Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment