mirror of
https://gh.wpcy.net/https://github.com/wp-cli/i18n-command.git
synced 2026-05-01 01:38:58 +08:00
20 lines
666 B
XML
20 lines
666 B
XML
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
backupGlobals="false"
|
|
beStrictAboutCoversAnnotation="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
colors="true"
|
|
verbose="true">
|
|
<testsuite name="wp-cli/i18n-command tests">
|
|
<directory suffix="Test.php">tests</directory>
|
|
</testsuite>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|