Skip to content

Instantly share code, notes, and snippets.

@caramelchocolate
Created March 31, 2020 06:43
Show Gist options
  • Save caramelchocolate/1d33ca3d41d7daab4b53e2de5fea7417 to your computer and use it in GitHub Desktop.
Save caramelchocolate/1d33ca3d41d7daab4b53e2de5fea7417 to your computer and use it in GitHub Desktop.
phpunit setting file for me
<?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