Adds cocoapods for libraries.
Adds OCMockito and OCHamcrest libs.
This commit is contained in:
55
iOS/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.h
generated
Normal file
55
iOS/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.h
generated
Normal file
@@ -0,0 +1,55 @@
|
||||
// OCHamcrest by Jon Reid, https://qualitycoding.org/
|
||||
// Copyright 2019 hamcrest.org. See LICENSE.txt
|
||||
|
||||
#import <OCHamcrest/HCBaseMatcher.h>
|
||||
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/*!
|
||||
* @abstract Matches true values.
|
||||
*/
|
||||
@interface HCIsTrue : HCBaseMatcher
|
||||
@end
|
||||
|
||||
/*!
|
||||
* @abstract Matches false values.
|
||||
*/
|
||||
@interface HCIsFalse : HCBaseMatcher
|
||||
@end
|
||||
|
||||
|
||||
FOUNDATION_EXPORT id HC_isTrue(void);
|
||||
|
||||
#ifndef HC_DISABLE_SHORT_SYNTAX
|
||||
/*!
|
||||
* @abstract Creates a matcher that matches when the examined object is an non-zero NSNumber.
|
||||
* @discussion
|
||||
* <b>Name Clash</b><br />
|
||||
* In the event of a name clash, <code>#define HC_DISABLE_SHORT_SYNTAX</code> and use the synonym
|
||||
* HC_isTrue instead.
|
||||
*/
|
||||
static inline id isTrue(void)
|
||||
{
|
||||
return HC_isTrue();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
FOUNDATION_EXPORT id HC_isFalse(void);
|
||||
|
||||
#ifndef HC_DISABLE_SHORT_SYNTAX
|
||||
/*!
|
||||
* @abstract Creates a matcher that matches when the examined object is NSNumber zero.
|
||||
* @discussion
|
||||
* <b>Name Clash</b><br />
|
||||
* In the event of a name clash, <code>#define HC_DISABLE_SHORT_SYNTAX</code> and use the synonym
|
||||
* HC_isFalse instead.
|
||||
*/
|
||||
static inline id isFalse(void)
|
||||
{
|
||||
return HC_isFalse();
|
||||
}
|
||||
#endif
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user