상황 내가 만든 로직의 성능을 테스트하고자 연속적으로 호출하는 테스트 코드를 작성해봤다. 해당 로직에서는 레디스에 접근하는 경우가 있었기 때문에, Mock 객체를 활용해 실제 레디스에 접근하는 시간은 제외한 자바 코드의 성능만을 테스트 하고자 했다. 예시 코드는 아래와 같다. @MarsSpringBootTest @Slf4j class ServiceTest { private static final int CALL_STANDARD = 10_000_000; @Autowired private TestService testService; @Mock private Repository repository; @Test void run() { when(repository.find(xxx)).thenReturn(Optio..