public function HeaderBagTest::testGetDateException

@expectedException \RuntimeException

File

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

Class

HeaderBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetDateException() {
  $bag = new HeaderBag(array(
    'foo' => 'Tue',
  ));
  $headerDate = $bag
    ->getDate('foo');
}