Ejemplo n.º 1
0
 public function testCriaUrlAbsolutaComHostnameConfigurado()
 {
     CoreExt_View_Helper_UrlHelper::setBaseUrl('localhost');
     $expected = 'http://localhost/index.php?param1=value1#fragment';
     $this->assertEquals($expected, CoreExt_View_Helper_UrlHelper::url('index.php', array('query' => array('param1' => 'value1'), 'fragment' => 'fragment', 'absolute' => TRUE)));
 }