25 lines
637 B
Objective-C
25 lines
637 B
Objective-C
// OCMockito by Jon Reid, https://qualitycoding.org/
|
|
// Copyright 2020 Quality Coding, Inc. See LICENSE.txt
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class MKTInvocation;
|
|
@class MKTInvocationMatcher;
|
|
@class MKTLocation;
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MKTMatchingInvocationsFinder : NSObject
|
|
|
|
@property (nonatomic, assign, readonly) NSUInteger count;
|
|
|
|
- (void)findInvocationsInList:(NSArray<MKTInvocation *> *)invocations matching:(MKTInvocationMatcher *)wanted;
|
|
- (MKTLocation *)locationOfInvocationAtIndex:(NSUInteger)index;
|
|
- (MKTLocation *)locationOfLastInvocation;
|
|
- (void)markInvocationsAsVerified;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|