Example #1
0
 /**
  * @covers OAuth\Common\Http\Uri\Uri::__construct
  * @covers OAuth\Common\Http\Uri\Uri::parseUri
  * @covers OAuth\Common\Http\Uri\Uri::getQuery
  */
 public function testGetQueryWithoutParams()
 {
     $uri = new Uri('http://example.com');
     $this->assertSame('', $uri->getQuery());
 }