我正在使用以下命令运行一个简单的REST保证测试: * Java * TestNG * 放心 * Maven
运行此测试时出现以下错误:
groovy.lang.MissingMethodException: No signature of method:
static io.restassured.internal.http.URIBuilder.convertToURI()
is applicable for argument types: (java.lang.String) values:
[http://www.google.com]
我正在运行的代码如下:
@Test
public void testRESTAssured() {
given().when().get("http://www.google.com").then().statusCode(200);
}
我已经添加了https://github.com/rest-assured/rest-assured/wiki/gettingstarted
中列出的所有依赖项我正在运行的代码如下:
@Test
public void testRESTAssured() {
given().when().get("http://www.google.com").then().statusCode(200);
}
有什么想法吗?