PluginProbe
MONEI Payments for WooCommerce / 4.2.0
MONEI Payments for WooCommerce v4.2.0
7.3.3 7.3.2 7.3.1 7.3.0 7.2.4 7.2.3 7.2.2 7.2.0 7.2.1 7.1.3 2.1.0 3.0.0 3.1.0 3.1.1 4.0.0 4.1.0 4.1.1 4.2.0 4.2.1 5.0 5.1.0 5.1.1 5.1.2 5.2.2 5.2.3 All 87 releases
monei / includes / phpunit.xml.dist

phpunit.xml.dist in MONEI Payments for WooCommerce 4.2.0, at includes/phpunit.xml.dist

24 lines 764 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit bootstrap="./vendor/autoload.php"
3 colors="true"
4 convertErrorsToExceptions="true"
5 convertNoticesToExceptions="true"
6 convertWarningsToExceptions="true"
7 stopOnFailure="false">
8 <testsuites>
9 <testsuite name="tests">
10 <directory>./test/Api</directory>
11 <directory>./test/Model</directory>
12 </testsuite>
13 </testsuites>
14 <filter>
15 <whitelist processUncoveredFilesFromWhitelist="true">
16 <directory suffix=".php">./lib/Api</directory>
17 <directory suffix=".php">./lib/Model</directory>
18 </whitelist>
19 </filter>
20 <php>
21 <ini name="error_reporting" value="E_ALL" />
22 </php>
23 </phpunit>
24