Created
February 20, 2017 08:35
-
-
Save bloatfan/f55f999159180ca5482e37f650be592e to your computer and use it in GitHub Desktop.
phpunit.xml.dist
This file contains hidden or 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 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