Ejemplo n.º 1
0
 /**
  * @covers Nethgui\Adapter\TableAdapter::save
  * @todo   Implement testSave().
  */
 public function testSave1()
 {
     $f = $e = new \ArrayObject(array('1K' => new \ArrayObject(array('type' => 'T1', '1P' => '1V', '1Q' => '1W')), '2K' => new \ArrayObject(array('type' => 'T2', '2P' => '2V', '2Q' => '2W')), '3K' => new \ArrayObject(array('type' => 'T3', '3P' => '3V', '3Q' => '3W'))));
     $this->mockDb->set(DB::setKey('4K', 'T4', array('4P' => '4V', '4Q' => '4W')), $f);
     $this->mockDb->setFinal(TRUE);
     $this->object->offsetSet('4K', array('type' => 'T4', '4P' => '4V', '4Q' => '4W'));
     $this->assertTrue($this->object->isModified());
     $this->assertEquals(1, $this->object->save());
 }