function WebAssertTest::testResponseHeaderDoesNotExist

Same name in this branch
  1. 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testResponseHeaderDoesNotExist()
Same name in other branches
  1. 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testResponseHeaderDoesNotExist()
  2. 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testResponseHeaderDoesNotExist()
  3. 11.x core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testResponseHeaderDoesNotExist()

Tests WebAssert::responseHeaderDoesNotExist().

@covers ::responseHeaderDoesNotExist

File

core/tests/Drupal/Tests/Core/Test/WebAssertTest.php, line 88

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\Tests\Core\Test

Code

public function testResponseHeaderDoesNotExist() : void {
    $this->visit('', '', [
        'Null-Header' => '',
    ]);
    $this->assertSession()
        ->responseHeaderDoesNotExist('does-not-exist');
    $this->expectException(AssertionFailedError::class);
    $this->expectExceptionMessage("Failed asserting that the response does not have a 'Null-Header' header.");
    $this->assertSession()
        ->responseHeaderDoesNotExist('Null-Header');
}

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