diff options
author | Mario <mario@mariovavti.com> | 2024-01-03 11:07:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-03 11:07:03 +0000 |
commit | afe8552be66a05b379ddc7b5f78e40f8a76540b8 (patch) | |
tree | d53037364fa680de21153fb1d3fcfcb3211d0d58 /vendor/stephenhill/base58/phpunit.xml | |
parent | cd0e50da249ba89252a6182b0ac239e003563f61 (diff) | |
download | volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.tar.gz volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.tar.bz2 volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.zip |
comÃposer add tephenhill/base58
Diffstat (limited to 'vendor/stephenhill/base58/phpunit.xml')
-rw-r--r-- | vendor/stephenhill/base58/phpunit.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/stephenhill/base58/phpunit.xml b/vendor/stephenhill/base58/phpunit.xml new file mode 100644 index 000000000..06362417f --- /dev/null +++ b/vendor/stephenhill/base58/phpunit.xml @@ -0,0 +1,31 @@ +<?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="true" + stopOnFailure="false" + syntaxCheck="true" + beStrictAboutTestsThatDoNotTestAnything="true" + beStrictAboutOutputDuringTests="true" + verbose="true" +> + <testsuites> + <testsuite name="Base58 Test Suite"> + <directory>./tests/</directory> + </testsuite> + </testsuites> + + <filter> + <whitelist addUncoveredFilesFromWhitelist="false"> + <directory suffix=".php">src</directory> + <exclude> + <directory suffix=".php">vendor</directory> + </exclude> + </whitelist> + </filter> +</phpunit> |