如果找到正则表达式文本,PHPUnit assertTrue?

前端之家收集整理的这篇文章主要介绍了如果找到正则表达式文本,PHPUnit assertTrue?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 PHPUnit并尝试检查页面上是否存在文本. assertRegExp工作但使用if语句我得到错误Failed断言null为真.

我知道$test返回null,但是如果文本存在,我不知道如何让它返回1或0或true / false?任何帮助表示感谢.

$element = $this->byCssSelector('body')->text();
        $test = $this->assertRegExp('/find this text/i',$element);

        if($this->assertTrue($test)){
            echo 'text found';
        }
        else{
            echo 'not found';
        }
assertRegExp()将不返回任何内容.如果断言失败 – 意味着找不到文本 – 则以下代码将不会执行:
$this->assertRegExp('/find this text/i',$element);
 // following code will not get executed if the text was not found
 // and the test will get marked as "Failed"
原文链接:https://www.f2er.com/regex/356876.html

猜你在找的正则表达式相关文章