本文整理汇总了PHP中JLanguage::setDebug方法的典型用法代码示例。如果您正苦于以下问题:PHP JLanguage::setDebug方法的具体用法?PHP JLanguage::setDebug怎么用?PHP JLanguage::setDebug使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JLanguage
的用法示例。
在下文中一共展示了JLanguage::setDebug方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetSetDebug
/**
* Test...
*
* @covers JLanguage::setDebug
* @covers JLanguage::getDebug
*
* @return void
*/
public function testGetSetDebug()
{
$current = $this->object->getDebug();
$this->assertEquals(
$current,
$this->object->setDebug(true),
'Line: ' . __LINE__
);
$this->object->setDebug(false);
$this->assertFalse(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug(true);
$this->assertTrue(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug(0);
$this->assertFalse(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug(1);
$this->assertTrue(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug('');
$this->assertFalse(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug('test');
$this->assertTrue(
$this->object->getDebug(),
'Line: ' . __LINE__
);
$this->object->setDebug('0');
$this->assertFalse(
$this->object->getDebug(),
'Line: ' . __LINE__
);
}
示例2: testSetDebug
/**
* @todo Implement testSetDebug().
*/
public function testSetDebug()
{
$debug1 = 'phpunit';
$debug2 = 'selenium';
$lang = new JLanguage('');
// First time, retuns FALSE
$this->assertFalse($lang->setDebug($debug1));
// set debug1, returns $debug1
$debug = $lang->setDebug($debug1);
$this->assertEquals($debug1, $debug, 'Line: ' . __LINE__);
$this->assertNotEquals($debug2, $debug, 'Line: ' . __LINE__);
// set debug2, returns debug1
$debug = $lang->setDebug($debug2);
$this->assertEquals($debug1, $debug, 'Line: ' . __LINE__);
$this->assertNotEquals($debug2, $debug, 'Line: ' . __LINE__);
// set debug2 (or debug1), returns debug2
$debug = $lang->setDebug($debug2);
$this->assertEquals($debug2, $debug, 'Line: ' . __LINE__);
$this->assertNotEquals($debug1, $debug, 'Line: ' . __LINE__);
}