Java-REST确保执行简单的测试代码时出现错误-Groovy groovy.lang.MissingMethodException:

时间:2019-05-22 18:12:51

标签: java maven groovy pom.xml rest-assured

我正在使用以下命令运行一个简单的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);
        }

有什么想法吗?

0 个答案:

没有答案