woocommerce-paypal-payments/phpunit.xml.dist

22 lines
649 B
Text
Raw Normal View History

2020-03-19 16:47:08 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
2020-04-28 15:03:25 +03:00
bootstrap="tests/PHPUnit/bootstrap.php"
2020-03-19 16:47:08 +01:00
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<directory suffix=".php">./modules/</directory>
2020-03-19 16:47:08 +01:00
</whitelist>
</filter>
<testsuites>
2020-03-19 16:48:07 +01:00
<testsuite name="unit">
2020-03-19 16:47:08 +01:00
<directory suffix="Test.php">./tests/PHPUnit</directory>
</testsuite>
</testsuites>
</phpunit>