Phpunit 错误 - 断言节点失败,表示为

发布于 2024-12-19 10:44:07 字数 595 浏览 1 评论 0原文

我正在使用 PHPUnit 3.5.x 和 Zend 1.10 我的 IndexControllerTestCase.php 中有一行

$this->assertXpathContentContains("id('message')", "test message");

显示错误

1) IndexControllerTest::testIndexWithMessageAction
Failed asserting node denoted by id CONTAINS content "test message"

C:\xampp\htdocs\hive\library\Zend\Test\PHPUnit\Constraint\DomQuery.php:256
C:\xampp\htdocs\hive\library\Zend\Test\PHPUnit\ControllerTestCase.php:516
C:\xampp\htdocs\testsample\tests\application\controllers\IndexControllerTest.php
:14

知道为什么会弹出此错误吗?任何帮助将不胜感激

I am using PHPUnit 3.5.x along with Zend 1.10
I have a line in my IndexControllerTestCase.php

$this->assertXpathContentContains("id('message')", "test message");

this shows an error

1) IndexControllerTest::testIndexWithMessageAction
Failed asserting node denoted by id CONTAINS content "test message"

C:\xampp\htdocs\hive\library\Zend\Test\PHPUnit\Constraint\DomQuery.php:256
C:\xampp\htdocs\hive\library\Zend\Test\PHPUnit\ControllerTestCase.php:516
C:\xampp\htdocs\testsample\tests\application\controllers\IndexControllerTest.php
:14

Any idea why this error pops up? Any help would really be appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筑梦 2024-12-26 10:44:07

我不是 XPath 向导,但在我们的测试中,我们使用类似以下内容来查找

messageid

$this->assertXpathContentContains('//div[@id="message"]', "test message");

I'm no XPath wizard, but in our tests we use something like the following to look for the <div> with the id of message.

$this->assertXpathContentContains('//div[@id="message"]', "test message");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文