From 2207603fa1e48cae71fcb80b65a8c3cd0bfc8e84 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Thu, 30 May 2013 18:06:26 +0200 Subject: [PATCH] test: coverage recording now needs to be explicit To better control what we are really covering, this patch uses PHPUnit forceCoversAnnotation option. That makes it to record covering if and only if @covers is used. Also rewrapped the options to uses tabulations. Change-Id: I467a5077a65b93cce08072a8d088b0b9c652a426 --- tests/phpunit/suite.xml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/tests/phpunit/suite.xml b/tests/phpunit/suite.xml index e1043b1b13..7a9122fa65 100644 --- a/tests/phpunit/suite.xml +++ b/tests/phpunit/suite.xml @@ -2,17 +2,18 @@ + colors="true" + backupGlobals="false" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + forceCoversAnnotation="true" + stopOnFailure="false" + timeoutForSmallTests="10" + timeoutForMediumTests="30" + timeoutForLargeTests="60" + strict="true" + verbose="true"> includes -- 2.20.1