给出下面的代码片段我在beanshell断言中使用来验证soap / json响应。如果两个值(名称)不等于我的bean shell断言显示失败消息,如下所示(我可以在视图结果部分看到断言失败)。如果bean shell断言通过或条件通过,我想显示成功的消息?任何人都可以建议如何在视图结果部分显示成功的消息吗?
String soap_firstName=vars.get("soap_firstName");
String json_firstName=vars.get("json_firstName");
if(!soap_firstName.equals(json_firstName)){
Failure=true;
FailureMessage = "SOAP first name not match with Json first name ";
} else{
Failure=false;
//TODO: send the result to assertion message section -> "SOAP and Json first name are equal";
}