Ejemplo n.º 1
0
 public function testSave1()
 {
     $e = new \ArrayObject(array('2K' => new \ArrayObject(array('2P' => '2V', '2Q' => '2W')), '3K' => new \ArrayObject(array('3P' => '3V', '3Q' => '3W'))));
     $this->object = new \Nethgui\Adapter\TableAdapter(MockFactory::getMockDatabase($this, $this->getDB()->set(DB::deleteKey("1K"), $e)), 'T', FALSE);
     $this->assertFalse($this->object->isModified());
     unset($this->object['1K']);
     $this->assertTrue($this->object->isModified());
     $c = $this->object->save();
     $this->assertEquals(1, $c);
     $this->assertFalse($this->object->isModified());
     $this->assertFalse(isset($this->object['1K']));
 }