woocommerce/phpunit.xml

21 lines
527 B
XML
Raw Normal View History

2019-06-06 16:34:11 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
2019-06-24 15:17:02 +00:00
bootstrap="tests/Bootstrap.php"
2019-06-06 16:34:11 +00:00
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
syntaxCheck="true"
>
<testsuites>
<testsuite name="WooCommerce REST API Test Suite">
2019-06-24 15:17:02 +00:00
<directory suffix=".php">./tests/Tests</directory>
2019-06-06 16:34:11 +00:00
</testsuite>
2019-06-14 12:43:29 +00:00
<testsuite name="v4">
2019-06-24 15:17:02 +00:00
<directory suffix=".php">./tests/Tests/Version4</directory>
2019-06-14 12:43:29 +00:00
</testsuite>
2019-06-06 16:34:11 +00:00
</testsuites>
</phpunit>