mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-29 09:01:05 +00:00
50 lines
1.4 KiB
Objective-C
50 lines
1.4 KiB
Objective-C
//
|
|
// OCHamcrest - HCIsDictionaryContainingKey.h
|
|
// Copyright 2013 hamcrest.org. See LICENSE.txt
|
|
//
|
|
// Created by: Jon Reid, http://qualitycoding.org/
|
|
// Docs: http://hamcrest.github.com/OCHamcrest/
|
|
// Source: https://github.com/hamcrest/OCHamcrest
|
|
//
|
|
|
|
#import <OCHamcrestIOS/HCBaseMatcher.h>
|
|
|
|
|
|
@interface HCIsDictionaryContainingKey : HCBaseMatcher
|
|
{
|
|
id<HCMatcher> keyMatcher;
|
|
}
|
|
|
|
+ (instancetype)isDictionaryContainingKey:(id<HCMatcher>)theKeyMatcher;
|
|
- (instancetype)initWithKeyMatcher:(id<HCMatcher>)theKeyMatcher;
|
|
|
|
@end
|
|
|
|
|
|
OBJC_EXPORT id<HCMatcher> HC_hasKey(id keyMatch);
|
|
|
|
/**
|
|
hasKey(keyMatcher) -
|
|
Matches if dictionary contains an entry whose key satisfies a given matcher.
|
|
|
|
@param keyMatcher The matcher to satisfy for the key, or an expected value for @ref equalTo matching.
|
|
|
|
This matcher iterates the evaluated dictionary, searching for any key-value entry whose key
|
|
satisfies the given matcher. If a matching entry is found, @c hasKey is satisfied.
|
|
|
|
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
|
|
equality.
|
|
|
|
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
|
|
@c HC_hasKey instead.)
|
|
|
|
Examples:
|
|
@li @ref hasEntry(equalTo(@"foo"))
|
|
@li @ref hasEntry(@"foo")
|
|
|
|
@ingroup collection_matchers
|
|
*/
|
|
#ifdef HC_SHORTHAND
|
|
#define hasKey HC_hasKey
|
|
#endif
|