-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from potenday-project/develop
Develop
- Loading branch information
Showing
4 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
import mvc.promiseme.project.dto.RecommendScheduleRequestDTO; | ||
import mvc.promiseme.project.service.ProjectService; | ||
import mvc.promiseme.project.service.RecommendService; | ||
import mvc.promiseme.users.service.UserService; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.test.autoconfigure.core.AutoConfigureCache; | ||
|
@@ -26,6 +27,8 @@ public class projectTest { | |
private ProjectService projectService; | ||
@Autowired | ||
private RecommendService recommendService; | ||
@Autowired | ||
private UserService userService; | ||
|
||
@Test | ||
public void testGetDday() { | ||
|
@@ -73,4 +76,11 @@ public void testInsert(){ | |
public void testRecommendSchedule(){ | ||
recommendService.recommendSchedule(new RecommendScheduleRequestDTO(8L,"웹개발","기획자,백엔드개발자,프론트개발자,디자이너",LocalDate.parse("2023-10-13"),LocalDate.parse("2023-12-14"))); | ||
} | ||
|
||
@Test | ||
public void testCheckUSer(){ | ||
Long id = userService.check("[email protected]"); | ||
System.out.println("id" +id); | ||
} | ||
|
||
} |