mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
19 lines
663 B
XML
19 lines
663 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
|
bootstrap="./tests/bootstrap.php"
|
|
cacheResultFile="./build/cache/phpunit.result.cache"
|
|
colors="true"
|
|
verbose="true">
|
|
<testsuites>
|
|
<testsuite name="ramsey/uuid test suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|