diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2017-02-05 01:38:12 +0100 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2017-03-14 20:41:29 +0100 |
commit | 4a85726e5583e7de497077ded4e2ffbcd8b8a0b9 (patch) | |
tree | b6f89ec1bec065b776532968b770a205271626aa /tests/phpunit-mysql.xml | |
parent | cb2eee1d2e82be62118482fb2668561c193a012b (diff) | |
download | volse-hubzilla-4a85726e5583e7de497077ded4e2ffbcd8b8a0b9.tar.gz volse-hubzilla-4a85726e5583e7de497077ded4e2ffbcd8b8a0b9.tar.bz2 volse-hubzilla-4a85726e5583e7de497077ded4e2ffbcd8b8a0b9.zip |
:construction_worker: :arrow_up: :heavy_plus_sign: Update PHPUnit to current stable 6.
Update requirements to PHP7 for dev.
Add php-mock-phpunit to mock and stub global functions in a better way.
Diffstat (limited to 'tests/phpunit-mysql.xml')
-rw-r--r-- | tests/phpunit-mysql.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/phpunit-mysql.xml b/tests/phpunit-mysql.xml index 9ba40f087..171211094 100644 --- a/tests/phpunit-mysql.xml +++ b/tests/phpunit-mysql.xml @@ -1,12 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd" - backupGlobals="false" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd" + bootstrap="../boot.php" + forceCoversAnnotation="false" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" - beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutTodoAnnotatedTests="true" - processIsolation="false" verbose="true"> <testsuite name="Hubzilla default Test Suite"> <directory suffix="Test.php">./unit/</directory> @@ -31,7 +30,8 @@ </filter> <logging> <log type="junit" target="./results/junit.xml" logIncompleteSkipped="false"/> - <log type="coverage-html" target="./results/report/" lowUpperBound="35" - highLowerBound="70"/> + <log type="coverage-clover" target="./results/coverage-clover.xml"/> + <log type="coverage-html" target="./results/coverage-report/" lowUpperBound="35" + highLowerBound="70"/> </logging> </phpunit> |