我在我的 assertEquals() 语句中使用 regexp 时遇到问题。这是声明。
Assert.assertEquals("regexp:*TST-*[0-9]{5}", driver.getTitle());
但我得到这个错误:
org.junit.ComparisonFailure: expected:<[regexp:*TST-*[0-9]{5}]> but was:<[[#TST-23570] This is the new summary]>
看起来正则表达式只是一个正在比较的字符串。我错过了什么?