Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2021-05-16 20:11:19 +0300
committersualko <klaus@jsxc.org>2021-05-16 20:11:19 +0300
commita01b862310e468990ae857499c66ecc16ee8e010 (patch)
treef207d58eb5c52419743cc2ae631b98057545af57 /phpunit.xml
parentce5d55e96012c4daa6c1de607e70cf53dcb6a9ab (diff)
test: update phpunit
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml28
1 files changed, 12 insertions, 16 deletions
diff --git a/phpunit.xml b/phpunit.xml
index 09b416d..eacb482 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -1,17 +1,13 @@
-<phpunit bootstrap="tests/bootstrap-unit.php"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- colors="true"
->
- <testsuites>
- <testsuite name="unit">
- <directory>tests/unit</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">lib</directory>
- </whitelist>
- </filter>
+<?xml version="1.0"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap-unit.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
+ <coverage processUncoveredFiles="true">
+ <include>
+ <directory suffix=".php">lib</directory>
+ </include>
+ </coverage>
+ <testsuites>
+ <testsuite name="unit">
+ <directory>tests/unit</directory>
+ </testsuite>
+ </testsuites>
</phpunit>