You are here

public function HeaderBagTest::testGetDateException in Zircon Profile 8

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

@expectedException \RuntimeException

File

vendor/symfony/http-foundation/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');
}