Example #1
0
 public function testUpdateRow()
 {
     $updateData = array('child_id' => 1, 'child_name' => 'new_child_name');
     $this->childrenTable->updateRow($updateData);
     $child = $this->childrenTable->getRow(1);
     $this->assertCommonFieldsMatch($child->toArray(), $updateData);
 }