本文整理汇总了PHP中TestEnv::rollbackTransaction方法的典型用法代码示例。如果您正苦于以下问题:PHP TestEnv::rollbackTransaction方法的具体用法?PHP TestEnv::rollbackTransaction怎么用?PHP TestEnv::rollbackTransaction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestEnv
的用法示例。
在下文中一共展示了TestEnv::rollbackTransaction方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testAddAdCategory
function testAddAdCategory()
{
TestEnv::startTransaction();
$ret = Admin_DA::addAdCategory(array('ad_id' => 1, 'category_id' => 2));
$this->assertTrue(is_int($ret));
$this->assertTrue($ret > 0);
TestEnv::rollbackTransaction();
}
示例2: restoreEnv
/**
* A method for restoring the testing environment database setup.
* This method can normaly be avoided by using transactions to
* rollback database changes during testing, but sometimes a
* DROP TEMPORARY TABLE (for example) is used during testing,
* causing any transaction to be committed. In this case, this
* method is needed to re-set the testing database.
*/
static function restoreEnv($dropTmpTables = 'false')
{
$oDbh =& OA_DB::singleton();
// Rollback any transactions that have not been closed
// (Naughty, naughty test!)
while ($oDbh->inTransaction(true) || $oDbh->inTransaction()) {
TestEnv::rollbackTransaction();
}
if ($dropTmpTables) {
TestEnv::dropTempTables();
}
// Truncate all known core tables
$oTable =& OA_DB_Table_Core::singleton();
$oTable->truncateAllTables();
// Reset all database sequences
$oTable->resetAllSequences();
// Destroy the service locator
$oServiceLocator =& OA_ServiceLocator::instance();
unset($oServiceLocator->aService);
// Re-set up the test environment
TestRunner::setupEnv($GLOBALS['_MAX']['TEST']['layerEnv'], true);
}