24 lines
684 B
Objective-C
24 lines
684 B
Objective-C
// OCMockito by Jon Reid, https://qualitycoding.org/
|
|
// Copyright 2020 Quality Coding, Inc. See LICENSE.txt
|
|
|
|
#import "MKTInvocationsChecker.h"
|
|
|
|
@class MKTInvocation;
|
|
@class MKTInvocationMatcher;
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MKTMissingInvocationChecker : MKTInvocationsChecker
|
|
|
|
- (instancetype)init NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)initWithWantedDescription:(NSString *)wantedDescription NS_UNAVAILABLE;
|
|
- (nullable NSString *)checkInvocations:(NSArray<MKTInvocation *> *)invocations wanted:(MKTInvocationMatcher *)wanted;
|
|
|
|
@end
|
|
|
|
|
|
MKTInvocation *MKTFindSimilarInvocation(NSArray<MKTInvocation *> *invocations, MKTInvocationMatcher *wanted);
|
|
|
|
NS_ASSUME_NONNULL_END
|