1234567891011121314151617181920 |
- <?xml version="1.0"?>
- <phpunit
- bootstrap="tests/bootstrap.php"
- backupGlobals="false"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- >
- <testsuites>
- <testsuite name="integration">
- <directory suffix="Test.php">./tests/integration/</directory>
- </testsuite>
- </testsuites>
- <php>
- <env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/wp-config.php" />
- </php>
- </phpunit>
|