html单元测试,如何使用PHPUnit对HTML输出进行单元测试?

本文探讨了使用PHPUnit进行HTML输出单元测试时遇到的问题,特别是如何比较预期与实际的DOMDocument对象,提供了测试代码示例并寻求解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我是

PHPUnit的新手,我在单元测试HTML输出方面遇到了一些麻烦.

我的测试如下:

/**

* @covers Scrap::removeTags

*

*/

public function testRemoveTags() {

// Variables

$simple_parameter = 'script';

$array_parameter = array('script', 'div');

$html = '

';

// Expected HTML

$expected_html_whitout_script = new DOMDocument;

$expected_html_whitout_script->loadHTML('

');

$expected_html_without_script_div = new DOMDocument;

$expected_html_without_script_div->loadHTML('

');

// Actual HTML

$actual_whitout_script = new DOMDocument;

$actual_whitout_script->loadHTML($this->scrap->removeTags($html, $simple_parameter));

$actual_without_script_div = new DOMDocument;

$actual_without_script_div->loadHTML($this->scrap->removeTags($html, $array_parameter));

// Test

$this->assertEquals($expected_html_whitout_script, $actual_whitout_script);

$this->assertEquals($expected_html_without_script_div, $actual_without_script_div);

}

我的问题是DOMDocument对象生成一些HTML代码,我无法比较它.如何打印DOMDocument对象以查看输出?有关如何比较HTML的任何线索?

对不起,我的英语不好.

最好的祝福,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值