27 lines
716 B
Swift
27 lines
716 B
Swift
//
|
|
// StubThrowingFunction.swift
|
|
// Cuckoo
|
|
//
|
|
// Created by Tadeas Kriz on 13/01/16.
|
|
// Copyright © 2016 Brightify. All rights reserved.
|
|
//
|
|
|
|
public protocol StubThrowingFunction: StubFunctionThenTrait, StubFunctionThenReturnTrait, StubFunctionThenThrowTrait {
|
|
}
|
|
|
|
public struct ProtocolStubThrowingFunction<IN, OUT>: StubThrowingFunction {
|
|
public let stub: ConcreteStub<IN, OUT>
|
|
|
|
public init(stub: ConcreteStub<IN, OUT>) {
|
|
self.stub = stub
|
|
}
|
|
}
|
|
|
|
public struct ClassStubThrowingFunction<IN, OUT>: StubThrowingFunction, StubFunctionThenCallRealImplementationTrait {
|
|
public let stub: ConcreteStub<IN, OUT>
|
|
|
|
public init(stub: ClassConcreteStub<IN, OUT>) {
|
|
self.stub = stub
|
|
}
|
|
}
|