public function ResponseHeaderBagTest::testMakeDispositionInvalidDisposition in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/ResponseHeaderBagTest.php \Symfony\Component\HttpFoundation\Tests\ResponseHeaderBagTest::testMakeDispositionInvalidDisposition()
@expectedException \InvalidArgumentException
File
- vendor/
symfony/ http-foundation/ Tests/ ResponseHeaderBagTest.php, line 242
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testMakeDispositionInvalidDisposition() {
$headers = new ResponseHeaderBag();
$headers
->makeDisposition('invalid', 'foo.html');
}