Skip to content

Commit

Permalink
refactor: TestConfig, ContainerTest 상위 패키지로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
This2sho committed Apr 12, 2024
1 parent 01cc85b commit cc86092
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.parkingcomestrue.parking.application.container;
package com.parkingcomestrue.parking.application;

import com.parkingcomestrue.parking.application.auth.AuthService;
import com.parkingcomestrue.parking.application.config.TestConfig;
import com.parkingcomestrue.parking.application.container.MySQLDataCleaner;
import com.parkingcomestrue.parking.application.parking.ParkingService;
import com.parkingcomestrue.parking.application.review.ReviewService;
import com.parkingcomestrue.parking.domain.member.repository.MemberRepository;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.parkingcomestrue.parking.application.config;
package com.parkingcomestrue.parking.application;

import com.parkingcomestrue.parking.application.auth.authcode.infrastructure.AuthCodeSender;
import org.springframework.boot.test.context.TestConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;

import com.parkingcomestrue.parking.application.container.ContainerTest;
import com.parkingcomestrue.parking.application.ContainerTest;
import com.parkingcomestrue.parking.application.auth.authcode.AuthCodeCategory;
import com.parkingcomestrue.parking.application.auth.authcode.AuthCodePlatform;
import com.parkingcomestrue.parking.application.auth.authcode.dto.AuthCodeCertificateRequest;
Expand All @@ -19,9 +19,6 @@

class AuthServiceTest extends ContainerTest {

private static final String AUTH_CODE = "111111";


@Test
void 세션_아이디에_해당하는_세션을_찾는다() {
// given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import static org.junit.jupiter.api.Assertions.assertAll;

import com.parkingcomestrue.parking.application.container.ContainerTest;
import com.parkingcomestrue.parking.application.ContainerTest;
import com.parkingcomestrue.parking.application.parking.dto.ParkingDetailInfoResponse;
import com.parkingcomestrue.parking.application.review.dto.ReviewCreateRequest;
import com.parkingcomestrue.parking.domain.member.Member;
Expand Down

0 comments on commit cc86092

Please sign in to comment.