Exemplo n.º 1
0
 public function testUserName()
 {
     $url = new Url('http://foo@www.example.com/');
     $this->assertEquals('http', $url->getScheme());
     $this->assertEquals('foo', $url->getUserName());
     $url->setUserName('bar');
     $this->assertEquals('bar', $url->getUserName());
     $this->assertEquals('http://bar@www.example.com/', (string) $url);
 }