generated from GSM-MSG/MSG-Repository-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
60 additions
and
40 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
32 changes: 16 additions & 16 deletions
32
Projects/Domain/StudentDomain/Interface/DTO/Request/InputStudentInformationRequestDTO.swift
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
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
15 changes: 7 additions & 8 deletions
15
Projects/Domain/StudentDomain/Testing/UseCase/InputInformationUseCaseSpy.swift
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,9 +1,8 @@ | ||
// | ||
// InputInformationUseCaseSpy.swift | ||
// StudentDomainTesting | ||
// | ||
// Created by sunghun on 8/17/23. | ||
// Copyright © 2023 com.msg. All rights reserved. | ||
// | ||
import StudentDomainInterface | ||
|
||
import Foundation | ||
final class InputInformationUseCaseSpy: InputInformationUseCase { | ||
var executeCallCount = 0 | ||
func execute(req: InputStudentInformationRequestDTO) async throws { | ||
executeCallCount += 1 | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
Projects/Domain/TechStackDomain/Sources/DTO/Response/FetchTechStackListResponseDTO.swift
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,9 +1,9 @@ | ||
import Foundation | ||
|
||
public struct FetchTechStackListResponseDTO: Decodable { | ||
public let techStack: [String] | ||
public let techStacks: [String] | ||
|
||
public init(techStack: [String]) { | ||
self.techStack = techStack | ||
public init(techStacks: [String]) { | ||
self.techStacks = techStacks | ||
} | ||
} |
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