public function testCacheControlDirectiveParsingQuotedZero() {
$bag = new HeaderBag(array(
'cache-control' => 'max-age="0"',
));
$this
->assertTrue($bag
->hasCacheControlDirective('max-age'));
$this
->assertEquals(0, $bag
->getCacheControlDirective('max-age'));
}