JAVA Basic 강의자료] Spring MVC 테스팅(Test메서드)

 

JAVA Basic 강의자료] Spring MVC 테스팅(Test메서드)

 

 

 

 

실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.

 

 

 

Spring MVC 테스팅(Test메서드)

 

 

<소스코드>

 

@Test
    public void testFindUserById() throws Exception {
        try {
            MvcResult mvcResult = this.mockMvc
                .perform(get("/rest/owners/{usrCd}.json",  "admin").accept(MediaType.APPLICATION_JSON))

                .andExpect(status().isOk())                
   .andExpect(jsonPath("$.userCd").value("admin"))
                .andReturn() ;
 
 String jsonData = mvcResult.getResponse().getContentAsString();
 System.out.println(jsonData);  
        } catch(Exception e) {
            fail();
        }
    } 

 

 

+ Recent posts