You are here

public function AssertLegacyTraitTest::testAssertNoCacheTag in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Assert/AssertLegacyTraitTest.php \Drupal\Tests\Core\Assert\AssertLegacyTraitTest::testAssertNoCacheTag()

@covers ::assertNoCacheTag @expectedDeprecation AssertLegacyTrait::assertNoCacheTag() is deprecated in drupal:8.4.0 and is removed from drupal:10.0.0. Use $this->assertSession()->responseHeaderNotContains() instead. See https://www.drupal.org/node/3129738

File

core/tests/Drupal/Tests/Core/Assert/AssertLegacyTraitTest.php, line 173

Class

AssertLegacyTraitTest
@coversDefaultClass \Drupal\FunctionalTests\AssertLegacyTrait @group Assert @group legacy

Namespace

Drupal\Tests\Core\Assert

Code

public function testAssertNoCacheTag() {
  $this->webAssert
    ->responseHeaderNotContains('X-Drupal-Cache-Tags', 'some-cache-tag')
    ->shouldBeCalled();
  $this
    ->assertNoCacheTag('some-cache-tag');
}