ArgumentCaptor

public class ArgumentCaptor<Type>

Undocumented

  • Last captured value (if any)

    Declaration

    Swift

    public var value: Type? { get }
  • All captured values

    Declaration

    Swift

    public private(set) var allValues: [Type] { get }
  • Undocumented

    Declaration

    Swift

    public init()
  • Return parameter matcher which captures the argument.

    Declaration

    Swift

    public func capture() -> Parameter<Type>