springboot中如何在测试环境下进行web环境模拟测试

web环境模拟测试

模拟端口

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class WebTest {
    @Test
    void testRandomPort () {
    }
}

springboot中如何在测试环境下进行web环境模拟测试_第1张图片 

 springboot中如何在测试环境下进行web环境模拟测试_第2张图片

你可能感兴趣的:(springboot,spring,boot,java,后端)