예제 #1
0
 public function testClear()
 {
     $this->table->createRecord(array('id' => 7, 'username' => 'Bart'), true);
     $this->repository->clear();
     $this->assertEquals(0, $this->repository->count());
 }
예제 #2
0
파일: Table.php 프로젝트: sigma-z/dive
 /**
  * Clears repository
  */
 public function clearRepository()
 {
     $this->clearRelationReferences();
     $this->repository->clear();
 }