public function HeaderBagTest::testGetDateException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testGetDateException() {
$bag = new HeaderBag(array(
'foo' => 'Tue',
));
$headerDate = $bag
->getDate('foo');
}