You are here

public function NegotiationMiddlewareTest::testUnknowContentTypeReturnsHtmlByDefault in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php \Drupal\Tests\Core\StackMiddleware\NegotiationMiddlewareTest::testUnknowContentTypeReturnsHtmlByDefault()

Tests the getContentType() method when no priority format is found.

@covers ::getContentType

File

core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php, line 71
Contains \Drupal\Tests\Core\StackMiddleware\NegotiationMiddlewareTest.

Class

NegotiationMiddlewareTest
@coversDefaultClass \Drupal\Core\StackMiddleware\NegotiationMiddleware @group NegotiationMiddleware

Namespace

Drupal\Tests\Core\StackMiddleware

Code

public function testUnknowContentTypeReturnsHtmlByDefault() {
  $request = new Request();
  $this
    ->assertSame('html', $this->contentNegotiation
    ->getContentType($request));
}