Skip to content

Commit

Permalink
✨ modify 테스트 성공
Browse files Browse the repository at this point in the history
  • Loading branch information
u-genuine committed Jan 19, 2024
1 parent a0e3aa3 commit c8a7e8d
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,16 @@ public void testRegister(){

System.out.println("id: " + id);
}

@Test
public void testModify(){

//변경에 필요한 데이터만
NangmanLetterDTO nangmanLetterDTO = NangmanLetterDTO.builder()
.id(4L)
.has_response(true)
.build();

nangmanLetterService.modify(nangmanLetterDTO);
}
}

0 comments on commit c8a7e8d

Please sign in to comment.