+2010-04-30 Susanne Moog <typo3@susanne-moog.de>
+
+ * Fixed bug #14079: Running the unit tests floods the deprecation log (thanks to Oliver Klee)
+
2010-04-30 Steffen Kamper <info@sk-typo3.de>
* Fixed bug #14212: Better styling of BE login news (thanks to Georg Ringer)
- * Fixed bug #14116: Selecting/deselecting all records does not work with translated records (thanks to Reinhard Führicht)
+ * Fixed bug #14116: Selecting/deselecting all records does not work with translated records (thanks to Reinhard Führicht)
2010-04-29 Jeff Segars <jeff@webempoweredchurch.org>
* @test
*/
public function deprecatedBrowserInfoHookIsCalled() {
+ $GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = FALSE;
+
$classRef = uniqid('tx_browserInfoHook');
$browserInfoHookMock = $this->getMock($classRef, array('browserInfo'));
$browserInfoHookMock->expects($this->atLeastOnce())->method('browserInfo');
* @test
*/
public function deprecatedWhichDeviceHookIsCalled() {
+ $GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = FALSE;
+
$classRef = uniqid('tx_whichDeviceHook');
$whichDeviceHookMock = $this->getMock($classRef, array('whichDevice'));
$whichDeviceHookMock->expects($this->atLeastOnce())->method('whichDevice');
'T3_VAR' => $GLOBALS['T3_VAR'],
);
+ $GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = FALSE;
+
$this->testGlobalNamespace = uniqid('TEST');
$GLOBALS[$this->testGlobalNamespace] = array();