func applyThrowingTemplate()

in Sources/MockoloFramework/Templates/ThrowingKindTemplate.swift [18:29]


    func applyThrowingTemplate() -> String? {
        switch self {
        case .none:
            return nil
        case .any:
            return .throws
        case .rethrows:
            return .rethrows
        case .typed(let errorType):
            return "\(String.throws)(\(errorType))"
        }
    }