Created
May 13, 2017 14:07
-
-
Save bloatfan/10153b7cc4f2ff78bc1ac97b5da6a5d6 to your computer and use it in GitHub Desktop.
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