本文整理匯總了PHP中DebugKitDebugger::clearTimers方法的典型用法代碼示例。如果您正苦於以下問題:PHP DebugKitDebugger::clearTimers方法的具體用法?PHP DebugKitDebugger::clearTimers怎麽用?PHP DebugKitDebugger::clearTimers使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DebugKitDebugger
的用法示例。
在下文中一共展示了DebugKitDebugger::clearTimers方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: tearDown
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
parent::tearDown();
Configure::write('log', true);
DebugKitDebugger::clearTimers();
TestFireCake::reset();
}
示例2: tearDown
/**
* End a test
*
* @return void
*/
public function tearDown()
{
parent::tearDown();
unset($this->Article);
ClassRegistry::flush();
DebugKitDebugger::clearTimers();
}
示例3: endTest
/**
* tear down function
*
* @return void
**/
function endTest()
{
App::build(array('plugins' => $this->_paths['plugins'], 'views' => $this->_paths['views'], 'vendors' => $this->_paths['vendors'], 'controllers' => $this->_paths['controllers']));
unset($this->View, $this->Controller);
DebugKitDebugger::clearTimers();
Configure::write('debug', $this->_debug);
}
示例4: endTest
/**
* tear down function
*
* @return void
**/
function endTest()
{
Configure::write('pluginPaths', $this->_paths['plugin']);
Configure::write('viewPaths', $this->_paths['view']);
Configure::write('vendorPaths', $this->_paths['vendor']);
Configure::write('controllerPaths', $this->_paths['controller']);
unset($this->View, $this->Controller);
DebugKitDebugger::clearTimers();
Configure::write('debug', $this->_debug);
}
示例5: endTest
/**
* endTest
*
* @return void
**/
function endTest()
{
$_SERVER = $this->_server;
Configure::write('pluginPaths', $this->_paths['plugin']);
Configure::write('viewPaths', $this->_paths['view']);
Configure::write('vendorPaths', $this->_paths['vendor']);
Configure::write('controllerPaths', $this->_paths['controller']);
Configure::write('Cache.disable', true);
unset($this->Controller);
if (class_exists('DebugKitDebugger')) {
DebugKitDebugger::clearTimers();
}
}
示例6: endTest
/**
* end a test
*
* @return void
*/
function endTest()
{
unset($this->Article);
ClassRegistry::flush();
DebugKitDebugger::clearTimers();
}
示例7: tearDown
/**
* tearDown method
*
* @access public
* @return void
*/
function tearDown()
{
Configure::write('log', true);
DebugKitDebugger::clearTimers();
}
示例8: tearDown
/**
* endTest
*
* @return void
**/
public function tearDown() {
parent::tearDown();
$_SERVER = $this->_server;
$_GET = $this->_get;
App::build(array(
'plugins' => $this->_paths['plugins'],
'views' => $this->_paths['views'],
'controllers' => $this->_paths['controllers'],
'vendors' => $this->_paths['vendors']
), true);
Configure::write('Cache.disable', true);
unset($this->Controller);
ClassRegistry::flush();
if (class_exists('DebugKitDebugger')) {
DebugKitDebugger::clearTimers();
DebugKitDebugger::clearMemoryPoints();
}
Router::reload();
}
示例9: tearDown
/**
* teardown
*
* @return void
**/
function tearDown()
{
unset($this->Controller);
if (class_exists('DebugKitDebugger')) {
DebugKitDebugger::clearTimers();
}
}
示例10: endTest
/**
* endTest
*
* @return void
**/
function endTest()
{
$_SERVER = $this->_server;
App::build(array('plugins' => $this->_paths['plugins'], 'views' => $this->_paths['views'], 'controllers' => $this->_paths['controllers'], 'vendors' => $this->_paths['vendors']), true);
Configure::write('Cache.disable', true);
unset($this->Controller);
if (class_exists('DebugKitDebugger')) {
DebugKitDebugger::clearTimers();
DebugKitDebugger::clearMemoryPoints();
}
}
示例11: tearDown
/**
* tear down function
*
* @return void
**/
function tearDown()
{
unset($this->View, $this->Controller);
DebugKitDebugger::clearTimers();
Configure::write('debug', $this->_debug);
}
示例12: tearDown
/**
* tear down function
*
* @return void
**/
public function tearDown()
{
unset($this->View, $this->Controller);
DebugKitDebugger::clearTimers();
}
示例13: testGetTimers
/**
* test getting all the set timers.
*
* @return void
**/
function testGetTimers()
{
DebugKitDebugger::clearTimers();
DebugKitDebugger::startTimer('test1', 'this is my first test');
DebugKitDebugger::stopTimer('test1');
usleep(50);
DebugKitDebugger::startTimer('test2');
DebugKitDebugger::stopTimer('test2');
$timers = DebugKitDebugger::getTimers();
$this->assertEqual(count($timers), 2);
$this->assertTrue(is_float($timers['test1']['time']));
$this->assertTrue(isset($timers['test1']['message']));
$this->assertTrue(isset($timers['test2']['message']));
}