public function StreamDecoratorTraitTest::testWrapsMetadata in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/guzzlehttp/psr7/tests/StreamDecoratorTraitTest.php \GuzzleHttp\Tests\Psr7\StreamDecoratorTraitTest::testWrapsMetadata()
File
- vendor/
guzzlehttp/ psr7/ tests/ StreamDecoratorTraitTest.php, line 101
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testWrapsMetadata() {
$this
->assertSame($this->b
->getMetadata(), $this->a
->getMetadata());
$this
->assertSame($this->b
->getMetadata('uri'), $this->a
->getMetadata('uri'));
}