diff options
author | emkael <emkael@tlen.pl> | 2025-04-08 02:24:30 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2025-04-08 02:24:30 +0200 |
commit | af150891df3b90fda846941d62ea76616f42a6ab (patch) | |
tree | 6363926d7f4a2fe09dc4d1b763b67fbb8d949c09 /lib/php-youtube-api/phpunit.xml.dist | |
parent | af2da903d47550cdf1d7eb2d7b5e5b972d847958 (diff) |
Diffstat (limited to 'lib/php-youtube-api/phpunit.xml.dist')
-rw-r--r-- | lib/php-youtube-api/phpunit.xml.dist | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/php-youtube-api/phpunit.xml.dist b/lib/php-youtube-api/phpunit.xml.dist new file mode 100644 index 0000000..3cd6801 --- /dev/null +++ b/lib/php-youtube-api/phpunit.xml.dist @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd" + backupGlobals="false" + colors="true" + bootstrap="vendor/autoload.php" + > + <php> + <ini name="error_reporting" value="-1" /> + <ini name="xdebug.mode" value="coverage" /> + <env name="XDEBUG_MODE" value="coverage" /> + </php> + <testsuites> + <testsuite name="PHP-Youtube-API Test Suite"> + <directory>tests</directory> + </testsuite> + </testsuites> + + <filter> + <whitelist> + <directory>src</directory> + </whitelist> + </filter> +</phpunit> |