/**
  * @expectedException \InvalidArgumentException
  */
 public function testOffsetSetError1()
 {
     $this->object->offsetSet('4', 'hi');
 }
 /**
  * @covers Nethgui\Adapter\TableAdapter::save
  * @todo   Implement testSave().
  * @expectedException \LogicException
  */
 public function testSave2()
 {
     $this->object->offsetSet('4K', array('4P' => '4V', '4Q' => '4W'));
     $this->object->save();
 }