아래와 같이 반복적인 테스트 코드를 작성해야 할 때가 있다. @Test public void testFree() throws Exception { //given Event event = Event.builder() .basePrice(0) .maxPrice(0) .build(); //when event.update(); //then assertThat(event.isFree()).isTrue(); //given event = Event.builder() .basePrice(100) .maxPrice(0) .build(); //when event.update(); //then assertThat(event.isFree()).isFalse(); //given event = Event.builder() .ba..