function BrowserTestBaseTest::testAssertResponse

Tests legacy assertResponse().

@group legacy

File

core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php, line 265

Class

BrowserTestBaseTest
Tests BrowserTestBase functionality.

Namespace

Drupal\FunctionalTests

Code

public function testAssertResponse() {
    $this->expectDeprecation('AssertLegacyTrait::assertResponse() is deprecated in drupal:8.2.0 and is removed from drupal:10.0.0. Use $this->assertSession()->statusCodeEquals() instead. See https://www.drupal.org/node/3129738');
    $this->drupalGet('test-encoded');
    $this->assertResponse(200);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.