Created
February 12, 2019 00:09
-
-
Save arkadiusjonczek/6e612c194a89add28686c4b3bbafcf2a to your computer and use it in GitHub Desktop.
PHPUnit basic configuration #tags: PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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