Skip to content

Commit

Permalink
Refactor: import 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pjh5365 committed Sep 3, 2024
1 parent b1e244e commit 87514d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;

@SpringBootTest
@ActiveProfiles("test")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.transaction.annotation.Transactional;

import kaboo.kaboo_auth.domain.entity.Member;

@DataJpaTest
@Transactional
@DisplayName("Member Repository Test")
@ActiveProfiles("test")
class MemberRepositoryTest {
@Autowired
MemberRepository memberRepository;
Expand Down

0 comments on commit 87514d1

Please sign in to comment.