public function AppendStreamTest::testReturnsEmptyMetadata in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/guzzlehttp/psr7/tests/AppendStreamTest.php \GuzzleHttp\Tests\Psr7\AppendStreamTest::testReturnsEmptyMetadata()
File
- vendor/
guzzlehttp/ psr7/ tests/ AppendStreamTest.php, line 180
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testReturnsEmptyMetadata() {
$s = new AppendStream();
$this
->assertEquals([], $s
->getMetadata());
$this
->assertNull($s
->getMetadata('foo'));
}