Skip to content

Commit

Permalink
test: 더 이상 사용하지 않는 테스트 클래스 비활성화
Browse files Browse the repository at this point in the history
이제 사용하지 않는 테스트에 `@Disabled` 어노테이션을 추가함.
  • Loading branch information
hseong3243 committed Aug 16, 2024
1 parent 159edcd commit 7056705
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
Expand All @@ -17,6 +18,7 @@
import com.thirdparty.ticketing.support.TestContainerStarter;

@SpringBootTest
@Disabled("구조 변경으로 더 이상 사용하지 않음")
class RedisRunningRoomTest extends TestContainerStarter {

@Autowired private RedisRunningRoom runningRoom;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.util.concurrent.Executors;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
Expand All @@ -22,6 +23,7 @@
import com.thirdparty.ticketing.support.TestContainerStarter;

@SpringBootTest
@Disabled("구조 변경으로 더 이상 사용하지 않음")
class RedisWaitingCounterTest extends TestContainerStarter {

@Autowired private RedisWaitingCounter waitingCounter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.util.Set;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
Expand All @@ -24,6 +25,7 @@
import com.thirdparty.ticketing.support.TestContainerStarter;

@SpringBootTest
@Disabled("구조 변경으로 더 이상 사용하지 않음")
class RedisWaitingLineTest extends TestContainerStarter {

private static final String WAITING_LINE_KEY = "waiting_line:";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
Expand All @@ -17,6 +18,7 @@
import com.thirdparty.ticketing.support.TestContainerStarter;

@SpringBootTest
@Disabled("구조 변경으로 더 이상 사용하지 않음")
class RedisWaitingManagerTest extends TestContainerStarter {

@Autowired private RedisWaitingManager waitingManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import com.thirdparty.ticketing.support.TestContainerStarter;

@SpringBootTest
@Disabled("구조 변경으로 더 이상 사용하지 않음")
class RedisWaitingRoomTest extends TestContainerStarter {

@Autowired private RedisWaitingRoom waitingRoom;
Expand Down

0 comments on commit 7056705

Please sign in to comment.