You are here

public function HeaderBagTest::testToStringNull in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Tests/HeaderBagTest.php \Symfony\Component\HttpFoundation\Tests\HeaderBagTest::testToStringNull()

File

vendor/symfony/http-foundation/Tests/HeaderBagTest.php, line 27

Class

HeaderBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testToStringNull() {
  $bag = new HeaderBag();
  $this
    ->assertEquals('', $bag
    ->__toString());
}