CodeceptionUtilHttpCode

Codeception\Util\HttpCode

Class containing constants of HTTP Status Codes and method to print HTTP code with its description.

Usage:

<?php
use \Codeception\Util\HttpCode;

// using REST, PhpBrowser, or any Framework module
$I->seeResponseCodeIs(HttpCode::OK);
$I->dontSeeResponseCodeIs(HttpCode::NOT_FOUND);

getDescription()

public static getDescription($code)

Returns string with HTTP code and its description

<?php
HttpCode::getDescription(200); // '200 (OK)'
HttpCode::getDescription(401); // '401 (Unauthorized)'
  • param $code
  • return mixed

See source

© 2011–2017 Michael Bodnarchuk and contributors
Licensed under the MIT License.
http://codeception.com/docs/reference/HttpCode

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部