mirror of
https://github.com/fzaninotto/Faker.git
synced 2025-06-02 10:55:12 +02:00
22 lines
647 B
XML
22 lines
647 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheResultFile=".build/phpunit/result.cache"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Faker Test Suite">
|
|
<directory>./test/Faker/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|