woocommerce-paypal-payments/phpunit.xml.dist
2025-11-25 12:27:02 +01:00

21 lines
774 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/PHPUnit/bootstrap.php" backupGlobals="false" colors="true"
convertErrorsToExceptions="true" convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
<directory suffix=".php">./modules/</directory>
</include>
<exclude>
<directory suffix=".php">./modules/*/node_modules</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/PHPUnit</directory>
</testsuite>
</testsuites>
</phpunit>