本文整理匯總了PHP中DatabaseManager::generateFakeRecords方法的典型用法代碼示例。如果您正苦於以下問題:PHP DatabaseManager::generateFakeRecords方法的具體用法?PHP DatabaseManager::generateFakeRecords怎麽用?PHP DatabaseManager::generateFakeRecords使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DatabaseManager
的用法示例。
在下文中一共展示了DatabaseManager::generateFakeRecords方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testDelete
public function testDelete()
{
/**
* Log models delete test
*/
\DatabaseManager::generateFakeRecords();
$admin = $this->personRepository->findOne(array('login' => 'admin'));
$admin->delete();
$map = $this->getRepositoryMap($this->personRepository);
$this->assertCount(0, $map);
$rows = $this->dbal->fetchAll("select * from person where login = 'admin'");
$this->assertCount(1, $rows);
$adminRow = $rows[0];
$this->assertLessThanOrEqual(time(), strtotime($adminRow['v_end']));
/**
* Delete test for model without log behaviour
*/
$newModule = $this->moduleRepository->create(array('name' => 'Name'));
$newModule->save();
$map = $this->getRepositoryMap($this->moduleRepository);
$this->assertCount(1, $map);
$newModule->delete();
$map = $this->getRepositoryMap($this->moduleRepository);
$this->assertCount(0, $map);
$rows = $this->dbal->fetchAll("select * from module");
$this->assertCount(1, $rows);
// there is 1 backend module
\DatabaseManager::clearTables();
}
示例2: testManyToManyDelete
public function testManyToManyDelete()
{
\DatabaseManager::generateFakeRecords();
$admin = $this->personRepository->findOne(array('login' => 'admin'));
$backend = $this->moduleRepository->findOne(array('name' => 'Backend'));
$admin->addModuleDeveloperLink($backend);
$links = $admin->getModuleDeveloperLinks();
$this->assertCount(1, $links);
$link = $links[0];
$link->delete();
$links = $admin->getModuleDeveloperLinks();
$this->assertCount(0, $links);
$rows = $this->dbal->fetchAll("select * from module_developer_link");
$this->assertCount(1, $rows);
$now = $this->dbal->fetchNow();
$this->assertLessThanOrEqual(strtotime($now), $rows[0]['v_end']);
\DatabaseManager::clearTables();
}