public function testGetCacheControlHeader() {
$bag = new HeaderBag();
$bag
->addCacheControlDirective('public', '#a');
$this
->assertTrue($bag
->hasCacheControlDirective('public'));
$this
->assertEquals('#a', $bag
->getCacheControlDirective('public'));
}