25 lines
591 B
Objective-C
25 lines
591 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;
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MKTPrinter : NSObject
|
|
|
|
- (NSString *)printMatcher:(MKTInvocationMatcher *)matcher;
|
|
- (NSString *)printInvocation:(MKTInvocation *)invocation;
|
|
- (NSString *)printMismatchOf:(MKTInvocation *)invocation
|
|
expectation:(MKTInvocationMatcher *)expectation;
|
|
|
|
@end
|
|
|
|
|
|
FOUNDATION_EXPORT NSString *MKTOrdinal(NSUInteger index);
|
|
|
|
NS_ASSUME_NONNULL_END
|