本文整理匯總了PHP中CakeTestCase::endTest方法的典型用法代碼示例。如果您正苦於以下問題:PHP CakeTestCase::endTest方法的具體用法?PHP CakeTestCase::endTest怎麽用?PHP CakeTestCase::endTest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CakeTestCase
的用法示例。
在下文中一共展示了CakeTestCase::endTest方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: endTest
public function endTest($method)
{
parent::endTest($method);
unset($this->AdminCrud);
unset($this->User);
ClassRegistry::flush();
}
示例2: endTest
public function endTest($method = null)
{
$this->__shutdownController();
parent::endTest($method);
}
示例3: endTest
/**
*
*
* @param unknown $method
*/
public function endTest($method)
{
unset($this->Throttle);
parent::endTest($method);
}
示例4: endTest
public function endTest($method)
{
parent::endTest($method);
unset($this->Github);
}
示例5: endTest
/**
* End test
*
* @return void
* @access public
*/
public function endTest($method = null)
{
unset($this->MockedPluginModel);
ClassRegistry::flush();
parent::endTest($method);
}
示例6: endTest
public function endTest($method)
{
ModularAuthUtility::flushObjects();
parent::endTest($method);
}
示例7: endTest
function endTest($method)
{
parent::endTest($method);
ClassRegistry::flush();
}
示例8: endTest
function endTest($method = null)
{
ClassRegistry::flush();
parent::endTest($method);
}
示例9: endTest
/**
* End Test callback
*
* @param string $method
* @return void
* @access public
*/
public function endTest($method)
{
parent::endTest($method);
unset($this->Article, $this->Content, $this->Page, $this->Asset, $this->Link, $this->Image);
ClassRegistry::flush();
}
示例10: endTest
/**
* tearDown
*
* @return void
* @access public
*/
public function endTest($method)
{
parent::endTest($method);
unset($this->Session, $this->Content, $this->settings);
}
示例11: endTest
public function endTest($method)
{
parent::endTest($method);
$this->logMethodCall(__FUNCTION__);
}
示例12: endTest
public function endTest($action)
{
parent::endTest($action);
unset($this->SlugArticle);
ClassRegistry::flush();
}
示例13: endTest
public function endTest($method)
{
parent::endTest($method);
unset($this->Upload);
ClassRegistry::flush();
}
示例14: endTest
/**
* End Test
*
* @return void
* @access public
*/
public function endTest($method)
{
parent::endTest($method);
unset($this->Cleaner);
}
示例15: endTest
/**
* (non-PHPdoc)
* @see cake/tests/lib/CakeTestCase#endTest($method)
*/
public function endTest($method)
{
parent::endTest($method);
unset($this->Comments);
}