상품(product)과 주문(order), 그리고 이 두 테이블 간 연결 테이블인 orderProduct가 있다고 하자. `deleteAllInBatch()` 메서드로 리소스를 정리하는 것과 `deleteAll()` 메서드로 리소스를 정리하는 것의 차이를 알아보자. deleteAllInBatch()먼저 `deleteAllInBatch()` 메서드를 사용해 정리해볼 것이다.@AfterEachvoid tearDown() { orderProductRepository.deleteAllInBatch(); productRepository.deleteAllInBatch(); orderRepository.deleteAllInBatch();} 위 테스트코드 실행 시 발생하는 쿼리는 다음과 같다.Hiber..