java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc

报错信息:java.lang.AssertionError: Response content Expected :Hello IMOOC Actual :

java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc_第1张图片

一、报错测试类中的代码:

java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc_第2张图片

二、对应方法体中的代码

java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc_第3张图片

三、报错原因

方法体内的接口请求地址为“ / ”,而测试类的被我写成了“ /hello ”,也就是接口请求地址不正确,所以出现了上面的报错信息,在测试类里面将请求地址修改回相应报错方法体内的请求地址就可以了。

java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc_第4张图片

四、修改后运行结果

java.lang.AssertionError: Response content Expected :Hello IMOOC Actual : <Click to see differenc_第5张图片代码正常运行,也没有报错信息。

你可能感兴趣的:(学习)