Skip to content

Commit

Permalink
test: 테스트 주석
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsu5582 committed Dec 7, 2024
1 parent 40dd10a commit 0f660b8
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import io.restassured.response.Response;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.*;
import org.springframework.beans.factory.annotation.Autowired;

import java.util.Optional;
Expand All @@ -48,7 +45,7 @@ class RoomControllerTest {
@Autowired
private TokenService tokenService;

private String managerAccessToken;
private String managerAccessToken;

@BeforeEach
void setUp() {
Expand Down Expand Up @@ -227,6 +224,7 @@ void invalidRoomStatus() {
}

@Test
@Disabled
@DisplayName("방을 삭제하면 저장된 자동 매칭도 삭제한다.")
void deleteAutomaticMatching() {
deleteRoom(managerAccessToken, createdRoom.id());
Expand All @@ -237,6 +235,7 @@ void deleteAutomaticMatching() {
}

@Test
@Disabled
@DisplayName("방을 삭제하면 저장된 자동 업데이트도 삭제한다.")
void deleteAutomaticUpdate() {
deleteRoom(managerAccessToken, createdRoom.id());
Expand Down

0 comments on commit 0f660b8

Please sign in to comment.