19 lines
406 B
Objective-C
19 lines
406 B
Objective-C
// OCHamcrest by Jon Reid, https://qualitycoding.org/
|
|
// Copyright 2019 hamcrest.org. See LICENSE.txt
|
|
|
|
#import <OCHamcrest/HCBaseMatcher.h>
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HCClassMatcher : HCBaseMatcher
|
|
|
|
@property (nonatomic, strong, readonly) Class theClass;
|
|
|
|
- (instancetype)initWithClass:(Class)aClass NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|