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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-09-13 10:03:37 +0300
committerdartcafe <github@dartcafe.de>2021-09-13 10:03:37 +0300
commitc5988662a6e80e9112c6ad16b9b8f593d5abea57 (patch)
tree9b69d08d04e19805c02bb1134f3967601a96da5a /tests/phpunit.xml
parent6c776931da4db2dd56fbc3ccc294d5d594ed4a33 (diff)
migrate configuration
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'tests/phpunit.xml')
-rw-r--r--tests/phpunit.xml23
1 files changed, 12 insertions, 11 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index 5f6733f1..f6bddda1 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -1,12 +1,13 @@
-<phpunit bootstrap="bootstrap.php" colors="true">
- <filter>
- <whitelist>
- <directory suffix=".php">../lib</directory>
- </whitelist>
- </filter>
- <testsuites>
- <testsuite name="unit">
- <directory>./Unit</directory>
- </testsuite>
- </testsuites>
+<?xml version="1.0"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
+ <coverage>
+ <include>
+ <directory suffix=".php">../lib</directory>
+ </include>
+ </coverage>
+ <testsuites>
+ <testsuite name="unit">
+ <directory>./Unit</directory>
+ </testsuite>
+ </testsuites>
</phpunit>