From 8691ccc0139fb5c7f69c95edcb99ab89cec118af Mon Sep 17 00:00:00 2001 From: Bruno Da Silva Date: Fri, 18 May 2018 14:57:41 +0000 Subject: [PATCH] test: reduce the verbosity of test cases SVN:trunk[5802] --- test/ItopTestCase.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/ItopTestCase.php b/test/ItopTestCase.php index a5f834d9e5..82409e869c 100644 --- a/test/ItopTestCase.php +++ b/test/ItopTestCase.php @@ -27,11 +27,11 @@ namespace Combodo\iTop\Test\UnitTest; use PHPUnit\Framework\TestCase; -define('DEBUG_UNIT_TEST', true); +define('DEBUG_UNIT_TEST', false); class ItopTestCase extends TestCase { - protected function setUp() + protected function setUp() { @include_once '../approot.inc.php'; @include_once '../../approot.inc.php'; @@ -39,6 +39,7 @@ class ItopTestCase extends TestCase @include_once '../../../../approot.inc.php'; $this->debug("\n----------\n---------- ".$this->getName()."\n----------\n"); + } protected function debug($sMsg)