public function DefaultFormatTest::testFoo in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php \Drupal\FunctionalTests\Routing\DefaultFormatTest::testFoo()
File
- core/
tests/ Drupal/ FunctionalTests/ Routing/ DefaultFormatTest.php, line 22
Class
- DefaultFormatTest
- @group routing
Namespace
Drupal\FunctionalTests\RoutingCode
public function testFoo() {
$this
->drupalGet('/default_format_test/human');
$this
->assertSame('format:html', $this
->getSession()
->getPage()
->getContent());
$this
->assertSame('MISS', $this
->drupalGetHeader('X-Drupal-Cache'));
$this
->drupalGet('/default_format_test/human');
$this
->assertSame('format:html', $this
->getSession()
->getPage()
->getContent());
$this
->assertSame('HIT', $this
->drupalGetHeader('X-Drupal-Cache'));
$this
->drupalGet('/default_format_test/machine');
$this
->assertSame('format:json', $this
->getSession()
->getPage()
->getContent());
$this
->assertSame('MISS', $this
->drupalGetHeader('X-Drupal-Cache'));
$this
->drupalGet('/default_format_test/machine');
$this
->assertSame('format:json', $this
->getSession()
->getPage()
->getContent());
$this
->assertSame('HIT', $this
->drupalGetHeader('X-Drupal-Cache'));
}