public function testSaveModified()
 {
     $this->object->setKeyValue('k1');
     $this->object->offsetSet('A', 'XXX');
     $this->object->save();
     $this->assertFalse($this->object->isModified());
     $row = $this->object->getTableAdapter()->offsetGet('k1');
     $this->assertEquals('XXX', $row['A']);
 }