Example #1
0
 /**
  * @covers Nethgui\Controller\Request::spawnRequest
  * @todo   Implement testSpawnRequest().
  */
 public function testSpawnRequest()
 {
     $r = $this->object->spawnRequest('a');
     $this->assertEquals(array('b' => array('c' => array('d' => array('v1' => 'p1', 'v2' => 'g2', 'v3' => 'p3')))), $r->toArray());
     $this->assertEquals(array('b', 'c', 'd'), $r->getPath());
 }