public function ResponseHeaderBagTest::testGetCookiesWithInvalidArgument

@expectedException \InvalidArgumentException

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/ResponseHeaderBagTest.php, line 211

Class

ResponseHeaderBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetCookiesWithInvalidArgument() {
  $bag = new ResponseHeaderBag();
  $cookies = $bag
    ->getCookies('invalid_argument');
}