本文整理汇总了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);
}