mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
21 lines
627 B
Text
21 lines
627 B
Text
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
backupGlobals="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
>
|
||
|
<filter>
|
||
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
||
|
<directory suffix=".php">./src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
<testsuites>
|
||
|
<testsuite name="WooCommerce PayPal Commerce Gateway PHP unit tests">
|
||
|
<directory suffix="Test.php">./tests/PHPUnit</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
</phpunit>
|