Exemplo n.º 1
0
 public function testLoopsGetPagePathDelegate()
 {
     $app = new WebApplication(__DIR__ . "/app", "/", "GET", [], [], [], [], [], FALSE);
     $loops = $app->getLoops();
     $page = new Testpage();
     $element = new ElementMock1b();
     $page->offsetSet("aaa", $element);
     $this->assertSame("testpage/aaa", $element->offsetGet("acc")->getPagePath());
 }