23 lines
592 B
Swift
23 lines
592 B
Swift
//
|
|
// StubFunctionThenThrowTrait.swift
|
|
// Cuckoo
|
|
//
|
|
// Created by Filip Dolnik on 27.06.16.
|
|
// Copyright © 2016 Brightify. All rights reserved.
|
|
//
|
|
|
|
public protocol StubFunctionThenThrowTrait: BaseStubFunctionTrait {
|
|
/// Throws `error` when invoked.
|
|
func thenThrow(_ error: Error, _ errors: Error...) -> Self
|
|
}
|
|
|
|
public extension StubFunctionThenThrowTrait {
|
|
@discardableResult
|
|
func thenThrow(_ error: Error, _ errors: Error...) -> Self {
|
|
([error] + errors).forEach { error in
|
|
stub.appendAction(.throwError(error))
|
|
}
|
|
return self
|
|
}
|
|
}
|