Skip to content

Commit 247106c

Browse files
committed
fix: 기본 생성자 생성
1 parent ed93a74 commit 247106c

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

src/main/java/com/somemore/global/common/utils/GeoUtils.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
package com.somemore.global.common.utils;
22

3+
import static lombok.AccessLevel.PRIVATE;
4+
5+
import lombok.NoArgsConstructor;
6+
7+
@NoArgsConstructor(access = PRIVATE)
38
public class GeoUtils {
49

510
private static final double EARTH_RADIUS = 6371.0;

src/test/java/com/somemore/common/fixture/CenterFixture.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
public class CenterFixture {
66

7+
private CenterFixture() {
8+
}
9+
710
public static Center createCenter() {
811
return Center.builder()
912
.name("센터 이름")

src/test/java/com/somemore/common/fixture/LocationFixture.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
public class LocationFixture {
77

8+
private LocationFixture() {
9+
}
10+
811
public static Location createLocation() {
912
return Location.builder()
1013
.address("주소주소")

src/test/java/com/somemore/common/fixture/RecruitBoardFixture.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
public class RecruitBoardFixture {
1313

14+
private RecruitBoardFixture() {
15+
}
16+
1417
public static RecruitBoard createRecruitBoard() {
1518
LocalDateTime startDateTime = createStartDateTime();
1619
LocalDateTime endDateTime = startDateTime.plusHours(1);

0 commit comments

Comments
 (0)