gpt4 book ai didi

java - Spring Boot - 找不到放心的方法

转载 作者:行者123 更新时间:2023-11-30 06:09:45 25 4
gpt4 key购买 nike

我有一个使用 Spring Boot 构建的 REST API。

我正在尝试使用 Rest-Assured 测试框架,但我似乎无法让它工作。

我正在使用来自 Here 的指南

get("/lotto").then().assertThat().body("lotto.lottoId", equalTo(5));

并将依赖项添加到我的 maven 项目中。

<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.9.0</version>
<scope>test</scope>
</dependency>

但是,它似乎没有导入所需的类,只是提示我创建一个新的“get()” 方法。

我的测试类:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(Application.class)
@WebIntegrationTest
public class DemoControllerTest {

@Test
public void test() {
get("/lotto").then().assertThat().body("lotto.lottoId", equalTo(5));
}

}

我错过了什么?

最佳答案

What am I missing?

缺少一个简单的static 导入!为了解析 get 静态方法,只需使用以下 static 导入:

import static com.jayway.restassured.RestAssured.get;

关于java - Spring Boot - 找不到放心的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37371659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com