public function NegotiationMiddlewareTest::testAjaxIframeUpload in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php \Drupal\Tests\Core\StackMiddleware\NegotiationMiddlewareTest::testAjaxIframeUpload()
Tests the getContentType() method with AJAX iframe upload.
@covers ::getContentType
File
- core/
tests/ Drupal/ Tests/ Core/ StackMiddleware/ NegotiationMiddlewareTest.php, line 47 - Contains \Drupal\Tests\Core\StackMiddleware\NegotiationMiddlewareTest.
Class
- NegotiationMiddlewareTest
- @coversDefaultClass \Drupal\Core\StackMiddleware\NegotiationMiddleware @group NegotiationMiddleware
Namespace
Drupal\Tests\Core\StackMiddlewareCode
public function testAjaxIframeUpload() {
$request = new Request();
$request->request
->set('ajax_iframe_upload', '1');
$this
->assertSame('iframeupload', $this->contentNegotiation
->getContentType($request));
}