Skip to content

Commit 5f28252

Browse files
committed
refactor(service): 클래스명 리팩터링
- NEWRegisterVolunteerService를 RegisterNEWVolunteerService로 클래스명 변경 - 관련 테스트 클래스 및 필드명도 동일하게 수정
1 parent 3a356db commit 5f28252

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/somemore/volunteer/service/NEWRegisterVolunteerService.java renamed to src/main/java/com/somemore/volunteer/service/RegisterNEWVolunteerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@Service
1313
@RequiredArgsConstructor
1414
@Transactional
15-
public class NEWRegisterVolunteerService implements NEWRegisterVolunteerUseCase {
15+
public class RegisterNEWVolunteerService implements NEWRegisterVolunteerUseCase {
1616

1717
private final NEWVolunteerRepository NEWVolunteerRepository;
1818

src/test/java/com/somemore/volunteer/service/NEWRegisterVolunteerServiceTest.java renamed to src/test/java/com/somemore/volunteer/service/RegisterNEWVolunteerServiceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
import static org.assertj.core.api.Assertions.assertThat;
1515

1616
@Transactional
17-
class NEWRegisterVolunteerServiceTest extends IntegrationTestSupport {
17+
class RegisterNEWVolunteerServiceTest extends IntegrationTestSupport {
1818

1919
@Autowired
20-
private NEWRegisterVolunteerService registerVolunteerService;
20+
private RegisterNEWVolunteerService registerVolunteerService;
2121

2222
@Autowired
2323
private NEWVolunteerRepository volunteerRepository;

0 commit comments

Comments
 (0)