コード例 #1
0
ファイル: MvcTest.php プロジェクト: BGCX262/zym-svn-to-git
 /**
  * Tests that hrefs are generated correctly using the URL helper
  *
  */
 public function testHrefIsGeneratedUsingUrlHelper()
 {
     $page = new Zym_Navigation_Page_Mvc(array('label' => 'foo', 'action' => 'index', 'controller' => 'index'));
     $this->assertEquals('/', $page->getHref());
     $page->setAction('view');
     $page->setController('news');
     $this->assertEquals('/news/view', $page->getHref());
 }