diff options
Diffstat (limited to 'vendor/commerceguys/intl/phpunit.xml')
-rw-r--r-- | vendor/commerceguys/intl/phpunit.xml | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/vendor/commerceguys/intl/phpunit.xml b/vendor/commerceguys/intl/phpunit.xml index 82bf2b096..159d863d9 100644 --- a/vendor/commerceguys/intl/phpunit.xml +++ b/vendor/commerceguys/intl/phpunit.xml @@ -1,23 +1,13 @@ <?xml version="1.0" encoding="UTF-8"?> - -<phpunit backupGlobals="false" - backupStaticAttributes="false" - colors="true" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" - stopOnFailure="false" - bootstrap="vendor/autoload.php" -> +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> + <coverage> + <include> + <directory suffix=".php">./src/</directory> + </include> + </coverage> <testsuites> <testsuite name="CommerceGuys Intl Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> - - <filter> - <whitelist> - <directory suffix=".php">./src/</directory> - </whitelist> - </filter> </phpunit> |