本文整理汇总了PHP中CakeTestCase::end方法的典型用法代码示例。如果您正苦于以下问题:PHP CakeTestCase::end方法的具体用法?PHP CakeTestCase::end怎么用?PHP CakeTestCase::end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CakeTestCase
的用法示例。
在下文中一共展示了CakeTestCase::end方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: end
function end()
{
parent::end();
$Cleanup = new Folder(TMP . 'tests/svn');
if ($Cleanup->pwd() == TMP . 'tests/svn') {
$Cleanup->delete();
}
}
示例2: end
function end()
{
// if you comment these 2 lines you will be able to see the test images successfully duplicated over
// to the folder webroot/uploads/meiomodel
$folder =& new Folder(WWW_ROOT . 'uploads' . DS . DESTINATION_TEST_IMAGE_FOLDER_FOR_MEIODUPLICATE);
$folder->delete();
parent::end();
}
示例3: end
function end()
{
parent::end();
Configure::write('debug', $this->debug);
}
示例4: end
/**
* Make sure all fixtures tables are being dropped
*
* @access public
*/
function end()
{
$this->db->simulate = false;
parent::end();
$this->db->simulate = true;
}
示例5: end
function end()
{
$folder =& new Folder(WWW_ROOT . 'uploads' . DS . 'meiomodel');
$folder->delete();
parent::end();
}
示例6: end
function end()
{
$this->__shutdownController();
parent::end();
}
示例7: end
public function end()
{
parent::end();
$this->logMethodCall(__FUNCTION__);
}
示例8: end
public function end()
{
Configure::write('Database.logSQL', 0);
parent::end();
Configure::write('Database.logSQL', 2);
}