@SpringBootTest: 1개의 글
![](http://i1.daumcdn.net/thumb/C200x150/?fname=https://blog.kakaocdn.net/dn/chx2Iu/btq26Fgv0jk/2rS0a6kt92pp5LW1hcHioK/img.png)
스프링 부트 테스트 - 내장 서버 랜덤 포트로 띄우기 👉 Dependency spring-boot 2.2.5.RELEASE junit 4.12 @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class WebtoonApiControllerTest { @LocalServerPort private int port; @Test public void printPort() throws Exception { System.out.println(port); assertNotEquals(port, 0); } @Autowired private TestRestTemplate..
Spring Framework/Spring boot #3
2021. 4. 22. 03:20