12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // Licensed under the terms in License.txt
- //
- // Copyright 2010 Allen Ding. All rights reserved.
- //
- #import "KiwiConfiguration.h"
- @class KWMessagePattern;
- @interface KWStub : NSObject
- #pragma mark - Initializing
- - (id)initWithMessagePattern:(KWMessagePattern *)aMessagePattern;
- - (id)initWithMessagePattern:(KWMessagePattern *)aMessagePattern value:(id)aValue;
- - (id)initWithMessagePattern:(KWMessagePattern *)aMessagePattern block:(id (^)(NSArray *params))aBlock;
- - (id)initWithMessagePattern:(KWMessagePattern *)aMessagePattern value:(id)aValue times:(id)times afterThatReturn:(id)aSecondValue;
- + (id)stubWithMessagePattern:(KWMessagePattern *)aMessagePattern;
- + (id)stubWithMessagePattern:(KWMessagePattern *)aMessagePattern value:(id)aValue;
- + (id)stubWithMessagePattern:(KWMessagePattern *)aMessagePattern block:(id (^)(NSArray *params))aBlock;
- + (id)stubWithMessagePattern:(KWMessagePattern *)aMessagePattern value:(id)aValue times:(id)times afterThatReturn:(id)aSecondValue;
- #pragma mark - Properties
- @property (nonatomic, readonly) KWMessagePattern *messagePattern;
- @property (nonatomic, readonly) id value;
- @property (nonatomic, readonly) id returnValueTimes;
- @property (nonatomic, readonly) int returnedValueTimes;
- @property (nonatomic, readonly) id secondValue;
- #pragma mark - Processing Invocations
- - (BOOL)processInvocation:(NSInvocation *)anInvocation;
- @end
|