示例#1
0
文件: build.php 项目: cmsx/url
 function testToString()
 {
     $u = new URL('one', 'two', array('hello' => 'john'));
     $this->assertEquals('/one/two/hello:john/', $u->toString(), 'Построение адреса');
     $this->assertEquals($u->toString(), (string) $u, 'Приведение объекта к строке');
     $this->assertEquals('<a class="hello" href="/one/two/hello:john/" target="_blank">hi</a>', $u->toHTML('hi', 'hello', '_blank'), 'HTML ссылка');
 }