Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
[BE] refactor: NoConcurrentAccessAspectTest Disabled추가 (#560)
Browse files Browse the repository at this point in the history
refactor: NoConcurrentAccessAspectTest Disabled추가
  • Loading branch information
ingpyo authored Oct 6, 2023
1 parent 6aba67c commit 8f387e4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import org.donggle.backend.application.repository.CategoryRepository;
import org.donggle.backend.application.service.category.CategoryService;
import org.donggle.backend.application.service.request.CategoryAddRequest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -27,6 +28,7 @@ class NoConcurrentAccessAspectTest {

@Test
@DisplayName("동시에 카테고리 추가 요청 테스트")
@Disabled
void addCategoryConcurrently() throws InterruptedException {
final CountDownLatch latch = new CountDownLatch(THREAD_COUNT);
final ExecutorService executorService = Executors.newFixedThreadPool(THREAD_COUNT);
Expand Down

0 comments on commit 8f387e4

Please sign in to comment.