gpt4 book ai didi

php - 如何使用 PHPUnit 测试特定方法

转载 作者:搜寻专家 更新时间:2023-10-31 21:08:10 25 4
gpt4 key购买 nike

我需要有关 PHPUnit 和一些方法的帮助。你们应该如何在 PHPUnit 中编写测试以达到以下属性和方法的高代码覆盖率?

我是 PHPUnit 的新手,可能需要一些帮助。我刚刚为更基本的代码编写了一些测试用例。此类为最终用户生成 flash 消息,并将其存储在 session 中。

非常感谢一些帮助。有什么想法吗?

private $sessionKey = 'statusMessage';
private $messageTypes = ['info', 'error', 'success', 'warning']; // Message types.
private $session = null;
private $all = null;

public function __construct() {
if(isset($_SESSION[$this->sessionKey])) {
$this->fetch();
}
}

public function fetch() {
$this->all = $_SESSION[$this->sessionKey];
}

public function add($type = 'debug', $message) {
$statusMessage = ['type' => $type, 'message' => $message];

if (is_null($this->all)) {
$this->all = array();
}

array_push($this->all, $statusMessage);

$_SESSION[$this->sessionKey] = $this->all;
}

public function clear() {
$_SESSION[$this->sessionKey] = null;
$this->all = null;
}

public function html() {
$html = null;

if(is_null($this->all))
return $html;

foreach ($this->all as $message) {

$type = $message['type'];
$message = $message['message'];

$html .= "<div class='message-" . $type . "'>" . $message . "</div>";

}

$this->clear();

return $html;
}

我已经设置了一个设置案例,像这样:

protected function setUp() {
$this->flash = new ClassName();
}

还尝试了一个测试用例:

public function testFetch() {
$this->assertEquals($this->flash->fetch(), "statusMessage", "Wrong session key.");
}

但是收到一条错误消息告诉我:“ undefined variable :_SESSION”如果我然后尝试:

public function testFetch() {
$_SESSION = array();
$this->assertEquals($this->flash->fetch(), "statusMessage", "Wrong session key.");
}

我收到另一条错误消息:“未定义索引:statusMessage”

最佳答案

尝试这样的事情:

    function testWithoutSessionKey() { 
$_SESSION = array();
$yourClass = new YourclassName();
$this->assertNull($yourClass->html()); }

function testWithSomeSessionKey() {
$_SESSION = array( 'statusMessage' => array(...));
$yourClass = new YourclassName();
$this->assertSame($expect, $yourClass->html());
}
  1. 您不能在 setup 中实例化您的类,因为您的构造函数需要 SESSION 变量可能存在(因此您可以测试它是否可以在其中具有一些值)。
  2. 您只能评估(断言)方法的输出,因此您不能断言方法返回的消息 fetch

在您的方法 testFecth 中,您发现了一个错误!感谢这个测试。尝试像在构造中一样通过检查来修复它:

public function fetch() {
if (isset($_SESSION[$this->sessionKey]))
$this->all = $_SESSION[$this->sessionKey];
}

希望对你有帮助

关于php - 如何使用 PHPUnit 测试特定方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28737278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com