我正在开发一个spring boot应用程序,并且在mockmvc单元测试方面没有太多经验。有一种测试方法createTable()
它在数据库中创建一个新表并返回
创建的表的id作为响应。
我想传递这个创建的id
表格为testmethod modifyTable()
。
我如何使用返回的 第二种方法的价值?请帮帮我
我的代码在这里:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = ServiceRunner.class)
public class ServiceTest {
//first method
@Test
public void successSaveTable() throws Exception{
........
String response=result.getResponse().getContentAsString();
int tableId=jsonResponse.getInt("id");
}
//second method
@Test
public void successModifyTable() throws Exception{
have to use the table id here.
}