Created
March 31, 2020 06:43
-
-
Save caramelchocolate/1d33ca3d41d7daab4b53e2de5fea7417 to your computer and use it in GitHub Desktop.
phpunit setting file for me
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" | |
beStrictAboutTestsThatDoNotTestAnything="false" | |
bootstrap="tests/bootstrap.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnError="false" | |
stopOnFailure="false" | |
verbose="true" | |
> | |
<testsuites> | |
<testsuite name=""> | |
<directory suffix="Test.php">./tests</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist processUncoveredFilesFromWhitelist="true"> | |
<directory suffix=".php">./src</directory> | |
<exclude> | |
<directory suffix=".html">./src/</directory> | |
</exclude> | |
</whitelist> | |
</filter> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment