You are here

public function WebAssert::responseHeaderContains in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/behat/mink/src/WebAssert.php \Behat\Mink\WebAssert::responseHeaderContains()

Checks that current response header contains value.

Parameters

string $name:

string $value:

Throws

ExpectationException

File

vendor/behat/mink/src/WebAssert.php, line 188

Class

WebAssert
Mink web assertions tool.

Namespace

Behat\Mink

Code

public function responseHeaderContains($name, $value) {
  $actual = $this->session
    ->getResponseHeader($name);
  $message = sprintf('The text "%s" was not found anywhere in the "%s" response header.', $value, $name);
  $this
    ->assert(false !== stripos($actual, $value), $message);
}