AuthenticationPrincipal

· 에러일기
문제점 @DisplayName("게시글에 필요한 정보를 입력 후 등록을 하면 게시글이 저장된다.") @Test void createBoard() throws Exception { // given String title = "게시글제목"; String content = "게시글내용"; PostCreateRequestDto request = createPostRequest(title, content); // when & then mockMvc.perform(post("/api/v1/board") .content(objectMapper.writeValueAsString(request)) .contentType(MediaType.APPLICATION_JSON)) .andDo(print()) .andExpect(..
솜사탕코튼
'AuthenticationPrincipal' 태그의 글 목록