public function UriTest::testUriEncodesPathProperly in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/UriTest.php \GuzzleHttp\Tests\Psr7\UriTest::testUriEncodesPathProperly()
@dataProvider pathTestProvider
File
- vendor/
guzzlehttp/ psr7/ tests/ UriTest.php, line 222
Class
- UriTest
- @covers GuzzleHttp\Psr7\Uri
Namespace
GuzzleHttp\Tests\Psr7Code
public function testUriEncodesPathProperly($input, $output) {
$uri = new Uri($input);
$this
->assertEquals((string) $uri, $output);
}