Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Response header PHPUnit Constraint

array
$_assertTypes= 'array(
self::ASSERT_RESPONSE_CODE'
Available assertion types
array(
self::ASSERT_RESPONSE_CODE
Details
string
$_match= 'null'
null
Details
_code(
\Zend_Controller_Response_Abstract $response, int $code
)
:
bool
Compare response code for positive match
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$code | int |
Type | Description |
---|---|
bool |

_getCode(
\Zend_Controller_Response_Abstract $response
)
:
int
Retrieve response code
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract |
Type | Description |
---|---|
int |

_getHeader(
\Zend_Controller_Response_Abstract $response, string $header
)
:
string|null
Retrieve response header
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string |
Type | Description |
---|---|
string|null |

_header(
\Zend_Controller_Response_Abstract $response, string $header
)
:
bool
Positive check for response header presence
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string |
Type | Description |
---|---|
bool |

_headerContains(
\Zend_Controller_Response_Abstract $response, string $header, string $match
)
:
bool
Positive check for header contents matching pattern
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string | |
$match | string |
Type | Description |
---|---|
bool |

_headerRegex(
\Zend_Controller_Response_Abstract $response, string $header, string $pattern
)
:
bool
Positive check for header contents matching regex
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string | |
$pattern | string |
Type | Description |
---|---|
bool |

_notCode(
\Zend_Controller_Response_Abstract $response, int $code
)
:
bool
Compare response code for negative match
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$code | int |
Type | Description |
---|---|
bool |

_notHeader(
\Zend_Controller_Response_Abstract $response, string $header
)
:
bool
Negative check for response header presence
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string |
Type | Description |
---|---|
bool |

_notHeaderContains(
\Zend_Controller_Response_Abstract $response, string $header, string $match
)
:
bool
Negative check for header contents matching pattern
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string | |
$match | string |
Type | Description |
---|---|
bool |

_notHeaderRegex(
\Zend_Controller_Response_Abstract $response, string $header, string $pattern
)
:
bool
Negative check for header contents matching regex
Name | Type | Description |
---|---|---|
$response | \Zend_Controller_Response_Abstract | |
$header | string | |
$pattern | string |
Type | Description |
---|---|
bool |

evaluate(
\Zend_Controller_Response_Abstract $other, null|string $assertType
=
null
)
:
bool
Evaluate an object to see if it fits the constraints
Name | Type | Description |
---|---|---|
$other | \Zend_Controller_Response_Abstract | String to examine |
$assertType | null|string | Assertion type |
Type | Description |
---|---|
bool |

fail(
mixed $other, string $description, bool $not
=
false
)
:
void
Report Failure
Name | Type | Description |
---|---|---|
$other | mixed | |
$description | string | Additional message to display |
$not | bool |
Exception | Description |
---|---|
\PHPUnit_Framework_ExpectationFailedException |

setNegate(
bool $flag
=
true
)
:
void
Indicate negative match
Name | Type | Description |
---|---|---|
$flag | bool |