diff options
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r-- | phpunit.xml.dist | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..89a39e0 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit backupGlobals="false" + backupStaticAttributes="false" + colors="true" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + processIsolation="false" + stopOnFailure="false" + syntaxCheck="false" + bootstrap="./tests/bootstrap.php" +> + + <testsuites> + <testsuite name="Dotenv tests"> + <directory>./tests/</directory> + </testsuite> + </testsuites> + <filter> + <whitelist processUncoveredFilesFromWhitelist="true"> + <directory suffix=".php">src</directory> + </whitelist> + </filter> +</phpunit>
\ No newline at end of file |