-
Notifications
You must be signed in to change notification settings - Fork 2
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 #94 from whatever-mentoring/feature/goal-proof-app…
…lication-service-test Write test codes of GoalProofApplicationService
- Loading branch information
Showing
6 changed files
with
462 additions
and
22 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
5 changes: 3 additions & 2 deletions
5
...n/com/whatever/raisedragon/applicationservice/goalproof/dto/GoalProofServiceRequestDto.kt
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 |
---|---|---|
@@ -1,17 +1,18 @@ | ||
package com.whatever.raisedragon.applicationservice.goalproof.dto | ||
|
||
import com.whatever.raisedragon.domain.gifticon.URL | ||
import com.whatever.raisedragon.domain.goalproof.Comment | ||
|
||
data class GoalProofCreateServiceRequest( | ||
val userId: Long, | ||
val goalId: Long, | ||
val url: String, | ||
val url: URL, | ||
val comment: Comment | ||
) | ||
|
||
data class GoalProofUpdateServiceRequest( | ||
val goalProofId: Long, | ||
val userId: Long, | ||
val url: String? = null, | ||
val url: URL? = null, | ||
val comment: Comment? = null | ||
) |
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
Oops, something went wrong.