Skip to content

Commit

Permalink
test: 경계값 테스트로 변경
Browse files Browse the repository at this point in the history
Co-authored-by: Juhwan Kim <[email protected]>
  • Loading branch information
Arachneee and 3Juhwan authored Jul 20, 2024
1 parent 926ef40 commit 507676e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class BillActionTest {

@DisplayName("지출 내역 제목의 앞뒤 공백을 제거한 길이가 2 ~ 30자가 아니면 지출을 생성할 수 없다.")
@ParameterizedTest
@ValueSource(strings = {" 감 ", "", " ", "감자감자감자감자감자감자백호백호백호백호백호감자감자감자감자감자감자백호백호백호백호백호"})
@ValueSource(strings = {" 감 ", "", " ", "1234567890123456789012345678901"})
void validateTitle(String title) {
Event event = new Event("name", "token");
Action action = new Action(event, 1L);
Expand Down

0 comments on commit 507676e

Please sign in to comment.