diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h index 1e1a231a46..ef9386879c 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCAllOf.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ NSArray *matchers; } -+ (id)allOf:(NSArray *)theMatchers; -- (id)initWithMatchers:(NSArray *)theMatchers; ++ (instancetype)allOf:(NSArray *)theMatchers; +- (instancetype)initWithMatchers:(NSArray *)theMatchers; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h index dc4eed2bed..f599a5be0b 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCAnyOf.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ NSArray *matchers; } -+ (id)anyOf:(NSArray *)theMatchers; -- (id)initWithMatchers:(NSArray *)theMatchers; ++ (instancetype)anyOf:(NSArray *)theMatchers; +- (instancetype)initWithMatchers:(NSArray *)theMatchers; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h index 8ca264cdfa..0b56437ecb 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCAssertThat.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h index 64bfbe1203..0d6fd81a0d 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCBaseDescription.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h index 1b8265946e..4ff43bd022 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCBaseMatcher.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBoxNumber.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBoxNumber.h deleted file mode 100644 index 60eeaaed1c..0000000000 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCBoxNumber.h +++ /dev/null @@ -1,93 +0,0 @@ -// -// OCHamcrest - HCBoxNumber.h -// Copyright 2012 hamcrest.org. See LICENSE.txt -// -// Created by: Jon Reid, http://qualitycoding.org/ -// Docs: http://hamcrest.github.com/OCHamcrest/ -// Source: https://github.com/hamcrest/OCHamcrest -// - -#ifdef __cplusplus - -namespace hamcrest { - -/** - Boxes a scalar value in an NSNumber, specialized per type. - - @b Deprecated - - @ingroup number_matchers - */ -template -inline -NSNumber *boxNumber(T value) __attribute__((deprecated)); - { return nil; } - -template <> -inline -NSNumber *boxNumber(BOOL value) - { return [NSNumber numberWithBool:value]; } - -template <> -inline -NSNumber *boxNumber(char value) - { return [NSNumber numberWithChar:value]; } - -template <> -inline -NSNumber *boxNumber(double value) - { return [NSNumber numberWithDouble:value]; } - -template <> -inline -NSNumber *boxNumber(float value) - { return [NSNumber numberWithFloat:value]; } - -template <> -inline -NSNumber *boxNumber(int value) - { return [NSNumber numberWithInt:value]; } - -template <> -inline -NSNumber *boxNumber(long value) - { return [NSNumber numberWithLong:value]; } - -template <> -inline -NSNumber *boxNumber(long long value) - { return [NSNumber numberWithLongLong:value]; } - -template <> -inline -NSNumber *boxNumber(short value) - { return [NSNumber numberWithShort:value]; } - -template <> -inline -NSNumber *boxNumber(unsigned char value) - { return [NSNumber numberWithUnsignedChar:value]; } - -template <> -inline -NSNumber *boxNumber(unsigned int value) - { return [NSNumber numberWithUnsignedInt:value]; } - -template <> -inline -NSNumber *boxNumber(unsigned long value) - { return [NSNumber numberWithUnsignedLong:value]; } - -template <> -inline -NSNumber *boxNumber(unsigned long long value) - { return [NSNumber numberWithUnsignedLongLong:value]; } - -template <> -inline -NSNumber *boxNumber(unsigned short value) - { return [NSNumber numberWithUnsignedShort:value]; } - -} // namespace hamcrest - -#endif // __cplusplus diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h new file mode 100644 index 0000000000..4378ac31c4 --- /dev/null +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h @@ -0,0 +1,20 @@ +// +// OCHamcrest - HCClassMatcher.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 + + +@interface HCClassMatcher : HCBaseMatcher +{ + Class theClass; +} + +- (instancetype)initWithType:(Class)type; + +@end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCCollectMatchers.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCCollectMatchers.h index c4e4787d4a..0685b3d34d 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCCollectMatchers.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCCollectMatchers.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCCollectMatchers.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h index b53d769b94..19224b645e 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCConformsToProtocol.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Todd Farrell // @@ -13,14 +13,13 @@ Protocol *theProtocol; } -+ (id)conformsToProtocol:(Protocol *)protocol; -- (id)initWithProtocol:(Protocol *)protocol; ++ (instancetype)conformsTo:(Protocol *)protocol; +- (instancetype)initWithProtocol:(Protocol *)protocol; @end OBJC_EXPORT id HC_conformsTo(Protocol *aProtocol); -OBJC_EXPORT id HC_conformsToProtocol(Protocol *aProtocol) __attribute__((deprecated)); /** conformsTo(aProtocol) - diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h index d2edbd81f7..415dc174d6 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCDescribedAs.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -17,13 +17,13 @@ NSArray *values; } -+ (id)describedAs:(NSString *)description - forMatcher:(id)aMatcher - overValues:(NSArray *)templateValues; ++ (instancetype)describedAs:(NSString *)description + forMatcher:(id)aMatcher + overValues:(NSArray *)templateValues; -- (id)initWithDescription:(NSString *)description - forMatcher:(id)aMatcher - overValues:(NSArray *)templateValues; +- (instancetype)initWithDescription:(NSString *)description + forMatcher:(id)aMatcher + overValues:(NSArray *)templateValues; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h index 5d99bacc6a..5b7214da63 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCDescription.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -17,7 +17,7 @@ @ingroup core */ -@protocol HCDescription +@protocol HCDescription /** Appends some plain text to the description. diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h index ddca564a06..7be45132ae 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCHasCount.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id countMatcher; } -+ (id)hasCount:(id)matcher; -- (id)initWithCount:(id)matcher; ++ (instancetype)hasCount:(id)matcher; +- (instancetype)initWithCount:(id)matcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h index c5b7037af0..e078c20c0f 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCHasDescription.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -12,8 +12,8 @@ @interface HCHasDescription : HCInvocationMatcher -+ (id)hasDescription:(id)descriptionMatcher; -- (id)initWithDescription:(id)descriptionMatcher; ++ (instancetype)hasDescription:(id)descriptionMatcher; +- (instancetype)initWithDescription:(id)descriptionMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h index b85be626c7..56425d3e71 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCHasProperty.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Justin Shacklette // @@ -14,8 +14,8 @@ id valueMatcher; } -+ (id)hasProperty:(NSString *)property value:(id)aValueMatcher; -- (id)initWithProperty:(NSString *)property value:(id)aValueMatcher; ++ (instancetype)hasProperty:(NSString *)property value:(id)aValueMatcher; +- (instancetype)initWithProperty:(NSString *)property value:(id)aValueMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h index 928d54cc8c..a976aedb4c 100755 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCInvocationMatcher.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -42,7 +42,7 @@ /** Returns an HCInvocationMatcher object initialized with an invocation and a matcher. */ -- (id)initWithInvocation:(NSInvocation *)anInvocation matching:(id)aMatcher; +- (instancetype)initWithInvocation:(NSInvocation *)anInvocation matching:(id)aMatcher; /** Invokes stored invocation on given item and returns the result. diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h index 0b00854844..94603321d4 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIs.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id matcher; } -+ (id)is:(id)aMatcher; -- (id)initWithMatcher:(id)aMatcher; ++ (instancetype)is:(id)aMatcher; +- (instancetype)initWithMatcher:(id)aMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h index 1b9bd63018..2137dbdeda 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsAnything.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,11 +15,11 @@ NSString *description; } -+ (id)isAnything; -+ (id)isAnythingWithDescription:(NSString *)aDescription; ++ (instancetype)isAnything; ++ (instancetype)isAnythingWithDescription:(NSString *)aDescription; -- (id)init; -- (id)initWithDescription:(NSString *)aDescription; +- (instancetype)init; +- (instancetype)initWithDescription:(NSString *)aDescription; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h index b7d77ff6fa..19a561f9e1 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsCloseTo.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -16,8 +16,8 @@ double delta; } -+ (id)isCloseTo:(double)aValue within:(double)aDelta; -- (id)initWithValue:(double)aValue delta:(double)aDelta; ++ (instancetype)isCloseTo:(double)aValue within:(double)aDelta; +- (instancetype)initWithValue:(double)aValue delta:(double)aDelta; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h index 61b40e8006..73932c1f40 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsCollectionContaining.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id elementMatcher; } -+ (id)isCollectionContaining:(id)anElementMatcher; -- (id)initWithMatcher:(id)anElementMatcher; ++ (instancetype)isCollectionContaining:(id)anElementMatcher; +- (instancetype)initWithMatcher:(id)anElementMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h index d860a64bc7..0e57ed476a 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsCollectionContainingInAnyOrder.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -12,11 +12,11 @@ @interface HCIsCollectionContainingInAnyOrder : HCBaseMatcher { - NSMutableArray *matchers; + NSArray *matchers; } -+ (id)isCollectionContainingInAnyOrder:(NSMutableArray *)itemMatchers; -- (id)initWithMatchers:(NSMutableArray *)itemMatchers; ++ (instancetype)isCollectionContainingInAnyOrder:(NSArray *)itemMatchers; +- (instancetype)initWithMatchers:(NSArray *)itemMatchers; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h index 8ff45734f6..a882f9d58d 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsCollectionContainingInOrder.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ NSArray *matchers; } -+ (id)isCollectionContainingInOrder:(NSArray *)itemMatchers; -- (id)initWithMatchers:(NSArray *)itemMatchers; ++ (instancetype)isCollectionContainingInOrder:(NSArray *)itemMatchers; +- (instancetype)initWithMatchers:(NSArray *)itemMatchers; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h index 0aea8bf927..e9017c507f 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsCollectionOnlyContaining.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id matcher; } -+ (id)isCollectionOnlyContaining:(id)aMatcher; -- (id)initWithMatcher:(id)aMatcher; ++ (instancetype)isCollectionOnlyContaining:(id)aMatcher; +- (instancetype)initWithMatcher:(id)aMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h index 084807b2e3..6d7d291829 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsDictionaryContaining.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -16,11 +16,11 @@ id valueMatcher; } -+ (id)isDictionaryContainingKey:(id)aKeyMatcher - value:(id)aValueMatcher; ++ (instancetype)isDictionaryContainingKey:(id)aKeyMatcher + value:(id)aValueMatcher; -- (id)initWithKeyMatcher:(id)aKeyMatcher - valueMatcher:(id)aValueMatcher; +- (instancetype)initWithKeyMatcher:(id)aKeyMatcher + valueMatcher:(id)aValueMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h index 461571faea..85135b443e 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsDictionaryContainingEntries.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -16,11 +16,11 @@ NSArray *valueMatchers; } -+ (id)isDictionaryContainingKeys:(NSArray *)theKeys - valueMatchers:(NSArray *)theValueMatchers; ++ (instancetype)isDictionaryContainingKeys:(NSArray *)theKeys + valueMatchers:(NSArray *)theValueMatchers; -- (id)initWithKeys:(NSArray *)theKeys - valueMatchers:(NSArray *)theValueMatchers; +- (instancetype)initWithKeys:(NSArray *)theKeys + valueMatchers:(NSArray *)theValueMatchers; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h index a04344e55d..c28e534818 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsDictionaryContainingKey.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id keyMatcher; } -+ (id)isDictionaryContainingKey:(id)theKeyMatcher; -- (id)initWithKeyMatcher:(id)theKeyMatcher; ++ (instancetype)isDictionaryContainingKey:(id)theKeyMatcher; +- (instancetype)initWithKeyMatcher:(id)theKeyMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h index 16fd76a97a..28ae8e8874 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsDictionaryContainingValue.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id valueMatcher; } -+ (id)isDictionaryContainingValue:(id)theValueMatcher; -- (id)initWithValueMatcher:(id)theValueMatcher; ++ (instancetype)isDictionaryContainingValue:(id)theValueMatcher; +- (instancetype)initWithValueMatcher:(id)theValueMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h index ccac92ff3f..afabab50a7 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsEmptyCollection.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -12,25 +12,26 @@ @interface HCIsEmptyCollection : HCHasCount -+ (id)isEmptyCollection; -- (id)init; ++ (instancetype)isEmptyCollection; +- (instancetype)init; @end -OBJC_EXPORT id HC_empty(void); +OBJC_EXPORT __attribute__((deprecated)) id HC_empty(void); +OBJC_EXPORT id HC_isEmpty(void); /** Matches empty collection. This matcher invokes @c -count on the evaluated object to determine if the number of elements it contains is zero. - + (In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym - @c HC_empty instead.) + @c HC_isEmpty instead.) @ingroup collection_matchers */ #ifdef HC_SHORTHAND - #define empty() HC_empty() + #define isEmpty() HC_isEmpty() #endif diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h index 4a23ff9745..83ddc890b1 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsEqual.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id object; } -+ (id)isEqualTo:(id)anObject; -- (id)initEqualTo:(id)anObject; ++ (instancetype)isEqualTo:(id)anObject; +- (instancetype)initEqualTo:(id)anObject; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h index c3fcba10ce..f22c0ac140 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsEqualIgnoringCase.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ NSString *string; } -+ (id)isEqualIgnoringCase:(NSString *)aString; -- (id)initWithString:(NSString *)aString; ++ (instancetype)isEqualIgnoringCase:(NSString *)aString; +- (instancetype)initWithString:(NSString *)aString; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h index 65e6ebe1c4..d173434928 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsEqualIgnoringWhiteSpace.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -16,8 +16,8 @@ NSString *strippedString; } -+ (id)isEqualIgnoringWhiteSpace:(NSString *)aString; -- (id)initWithString:(NSString *)aString; ++ (instancetype)isEqualIgnoringWhiteSpace:(NSString *)aString; +- (instancetype)initWithString:(NSString *)aString; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h index 1e27d27bb3..3af5837f22 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsEqualToNumber.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -30,6 +30,12 @@ OBJC_EXPORT id HC_equalToBool(BOOL value); #define equalToBool HC_equalToBool #endif +@interface HCIsEqualToBool : HCBaseMatcher + +- (instancetype)initWithValue:(BOOL)value; + +@end + OBJC_EXPORT id HC_equalToChar(char value); diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h index c029b3f53a..913cea09b0 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsIn.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id collection; } -+ (id)isInCollection:(id)aCollection; -- (id)initWithCollection:(id)aCollection; ++ (instancetype)isInCollection:(id)aCollection; +- (instancetype)initWithCollection:(id)aCollection; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h index 8988082fc1..cbb70703e2 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h @@ -1,22 +1,18 @@ // // OCHamcrest - HCIsInstanceOf.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// 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 +#import -@interface HCIsInstanceOf : HCBaseMatcher -{ - Class theClass; -} +@interface HCIsInstanceOf : HCClassMatcher + (id)isInstanceOf:(Class)type; -- (id)initWithType:(Class)type; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h index 7256876956..00996c63b3 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsNil.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h index 125416386a..e0d55f6070 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsNot.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id matcher; } -+ (id)isNot:(id)aMatcher; -- (id)initNot:(id)aMatcher; ++ (instancetype)isNot:(id)aMatcher; +- (instancetype)initNot:(id)aMatcher; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h index d0f4eb2066..9a8ff3ce31 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCIsSame.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ id object; } -+ (id)isSameAs:(id)anObject; -- (id)initSameAs:(id)anObject; ++ (instancetype)isSameAs:(id)anObject; +- (instancetype)initSameAs:(id)anObject; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h new file mode 100644 index 0000000000..93c86dca71 --- /dev/null +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h @@ -0,0 +1,40 @@ +// +// OCHamcrest - HCIsTypeOf.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 + + +@interface HCIsTypeOf : HCClassMatcher + ++ (id)isTypeOf:(Class)type; + +@end + + +OBJC_EXPORT id HC_isA(Class aClass); + +/** + isA(aClass) - + Matches if object is an instance of a given class (but not of a subclass). + + @param aClass The class to compare against as the expected class. + + This matcher checks whether the evaluated object is an instance of @a aClass. + + Example: + @li @ref isA([Foo class]) + + (In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym + @c HC_isA instead.) + + @ingroup object_matchers + */ +#ifdef HC_SHORTHAND + #define isA HC_isA +#endif diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h index 115cbdf654..f047ae7471 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCMatcher.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h index 3b8343e3db..7b0b6f345d 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCNumberAssert.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h index 0028188ed9..1d17e122ec 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCOrderingComparison.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -18,15 +18,15 @@ NSString *comparisonDescription; } -+ (id)compare:(id)expectedValue - minCompare:(NSComparisonResult)min - maxCompare:(NSComparisonResult)max - comparisonDescription:(NSString *)comparisonDescription; ++ (instancetype)compare:(id)expectedValue + minCompare:(NSComparisonResult)min + maxCompare:(NSComparisonResult)max + comparisonDescription:(NSString *)comparisonDescription; -- (id)initComparing:(id)expectedValue - minCompare:(NSComparisonResult)min - maxCompare:(NSComparisonResult)max - comparisonDescription:(NSString *)comparisonDescription; +- (instancetype)initComparing:(id)expectedValue + minCompare:(NSComparisonResult)min + maxCompare:(NSComparisonResult)max + comparisonDescription:(NSString *)comparisonDescription; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h index b5cd4bc6e7..adebc04835 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCRequireNonNilObject.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilString.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilString.h deleted file mode 100644 index 83ec9326fb..0000000000 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilString.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// OCHamcrest - HCRequireNonNilString.h -// Copyright 2012 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 -#import - - -/** - Throws an NSException if @a string is @c nil. - - @b Deprecated: Use @ref HCRequireNonNilObject instead. - - @ingroup helpers -*/ -OBJC_EXPORT void HCRequireNonNilString(NSString *string) __attribute__((deprecated)); diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h index c5a8f4fa02..610f74fb67 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCSelfDescribing.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -9,7 +9,7 @@ #import -@protocol HCDescription; +#import "HCDescription.h" /** diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h index 5b1a78a350..bbcf45653e 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCStringContains.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h index 383e0b4066..2cae881327 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCStringContainsInOrder.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,8 +15,8 @@ NSArray *substrings; } -+ (id)containsInOrder:(NSArray *)substringList; -- (id)initWithSubstrings:(NSArray *)substringList; ++ (instancetype)containsInOrder:(NSArray *)substringList; +- (instancetype)initWithSubstrings:(NSArray *)substringList; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h index fe5f0d1fac..82b86e1f1b 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCStringDescription.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -33,11 +33,11 @@ /** Returns an empty description. */ -+ (HCStringDescription *)stringDescription; ++ (instancetype)stringDescription; /** Returns an initialized HCStringDescription object that is empty. */ -- (id)init; +- (instancetype)init; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h index 47881741b7..12b2f8952a 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCStringEndsWith.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h index 7fda6ebb7f..0f64a3ca2e 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCStringStartsWith.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h index acf22d7a1e..9b15d7a617 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCSubstringMatcher.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -15,6 +15,6 @@ NSString *substring; } -- (id)initWithSubstring:(NSString *)aString; +- (instancetype)initWithSubstring:(NSString *)aString; @end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h new file mode 100644 index 0000000000..d7c1fe0a5c --- /dev/null +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h @@ -0,0 +1,21 @@ +#import + + +/** + Test failure location and reason. + + @ingroup integration + */ +@interface HCTestFailure : NSObject + +@property (nonatomic, readonly) id testCase; +@property (nonatomic, readonly) NSString *fileName; +@property (nonatomic, readonly) NSUInteger lineNumber; +@property (nonatomic, readonly) NSString *reason; + +- (instancetype)initWithTestCase:(id)testCase + fileName:(NSString *)fileName + lineNumber:(NSUInteger)lineNumber + reason:(NSString *)reason; + +@end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandler.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandler.h new file mode 100644 index 0000000000..52d14a3bae --- /dev/null +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandler.h @@ -0,0 +1,20 @@ +#import + +@class HCTestFailure; + + +/** + Chain-of-responsibility for handling test failures. + + @ingroup integration + */ +@protocol HCTestFailureHandler + +@property (nonatomic, strong) id successor; + +/** + Handle test failure at specific location, or pass to successor. + */ +- (void)handleFailure:(HCTestFailure *)failure; + +@end diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandlerChain.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandlerChain.h new file mode 100644 index 0000000000..0a8c35308c --- /dev/null +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandlerChain.h @@ -0,0 +1,12 @@ +#import +#import + +@protocol HCTestFailureHandler; + + +/** + Returns chain of test failure handlers. + + @ingroup integration + */ +OBJC_EXPORT id HC_testFailureHandlerChain(void); diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h index 6b1c7494fb..fa837ca12d 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h @@ -1,6 +1,6 @@ // // OCHamcrest - HCWrapInMatcher.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h index d5f2be3590..d8bd09c48f 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h @@ -1,6 +1,6 @@ // // OCHamcrest - OCHamcrest.h -// Copyright 2012 hamcrest.org. See LICENSE.txt +// Copyright 2013 hamcrest.org. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Docs: http://hamcrest.github.com/OCHamcrest/ @@ -27,6 +27,7 @@ #import #import #import +#import /** @defgroup collection_matchers Collection Matchers @@ -106,6 +107,9 @@ @defgroup integration Unit Test Integration */ #import +#import +#import +#import /** @defgroup integration_numeric Unit Tests of Primitive Numbers diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS index b657fa0a14..509b9eabaf 100644 Binary files a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS and b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS differ diff --git a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist index 48d30572a8..94afdb0b27 100644 --- a/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist +++ b/Support/HockeySDKTests/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 12C60 + 13A584 CFBundleDevelopmentRegion English CFBundleExecutable @@ -17,26 +17,26 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.9 + 3.0.0 CFBundleSignature ???? CFBundleVersion - 1.9 + 3.0.0 DTCompiler - + com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 4G2008a + 5A1413 DTPlatformVersion GM DTSDKBuild - 12C37 + 12D75 DTSDKName macosx10.8 DTXcode - 0452 + 0500 DTXcodeBuild - 4G2008a + 5A1413 NSHumanReadableCopyright - Copyright © 2012 hamcrest.org + Copyright © 2013 hamcrest.org diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h index 5a3e35d03e..2d45194923 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h @@ -1,6 +1,6 @@ // // OCMockito - MKTBaseMockObject.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h index 1e5df26dea..4263150943 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h @@ -1,6 +1,6 @@ // // OCMockito - MKTClassObjectMock.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h index 298906072e..c35e21a144 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h @@ -1,6 +1,6 @@ // // OCMockito - MKTObjectAndProtocolMock.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Kevin Lundberg // Source: https://github.com/jonreid/OCMockito diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h index e8dfd7dc7a..22e0b5a484 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h @@ -1,6 +1,6 @@ // // OCMockito - MKTObjectMock.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h index 7aa1cb7fd2..f00fa24310 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h @@ -1,6 +1,6 @@ // // OCMockito - MKTOngoingStubbing.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito @@ -17,7 +17,7 @@ */ @interface MKTOngoingStubbing : NSObject -- (id)initWithInvocationContainer:(MKTInvocationContainer *)invocationContainer; +- (instancetype)initWithInvocationContainer:(MKTInvocationContainer *)invocationContainer; /// Stubs given object as return value. - (MKTOngoingStubbing *)willReturn:(id)object; diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTPrimitiveArgumentMatching.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTPrimitiveArgumentMatching.h index e3684c72d5..8012fe1f57 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTPrimitiveArgumentMatching.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTPrimitiveArgumentMatching.h @@ -1,6 +1,6 @@ // // OCMockito - MKTPrimitiveArgumentMatching.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h index 45a8e388ee..91ed1d22f7 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h @@ -1,6 +1,6 @@ // // OCMockito - MKTProtocolMock.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito @@ -13,6 +13,9 @@ Mock object implementing a given protocol. */ @interface MKTProtocolMock : MKTBaseMockObject +{ + Protocol *_mockedProtocol; +} + (id)mockForProtocol:(Protocol *)aProtocol; - (id)initWithProtocol:(Protocol *)aProtocol; diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h index 7072b09d7a..3c77271f1a 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h @@ -1,6 +1,6 @@ // // OCMockito - OCMockito.h -// Copyright 2012 Jonathan M. Reid. See LICENSE.txt +// Copyright 2013 Jonathan M. Reid. See LICENSE.txt // // Created by: Jon Reid, http://qualitycoding.org/ // Source: https://github.com/jonreid/OCMockito @@ -67,9 +67,8 @@ #define mockObjectAndProtocol(aClass, aProtocol) MKTMockObjectAndProtocol(aClass, aProtocol) #endif + OBJC_EXPORT MKTOngoingStubbing *MKTGivenWithLocation(id testCase, const char *fileName, int lineNumber, ...); - - #define MKTGiven(methodCall) MKTGivenWithLocation(self, __FILE__, __LINE__, methodCall) /** @@ -91,7 +90,6 @@ OBJC_EXPORT MKTOngoingStubbing *MKTGivenWithLocation(id testCase, const char *fi OBJC_EXPORT id MKTVerifyWithLocation(id mock, id testCase, const char *fileName, int lineNumber); - #define MKTVerify(mock) MKTVerifyWithLocation(mock, self, __FILE__, __LINE__) /** @@ -122,7 +120,6 @@ verifyCount(mockObject, times(1)) OBJC_EXPORT id MKTVerifyCountWithLocation(id mock, id mode, id testCase, const char *fileName, int lineNumber); - #define MKTVerifyCount(mock, mode) MKTVerifyCountWithLocation(mock, mode, self, __FILE__, __LINE__) /** diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/OCMockitoIOS b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/OCMockitoIOS index fec6a0a08a..1393426c1c 100644 Binary files a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/OCMockitoIOS and b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/OCMockitoIOS differ diff --git a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Resources/Info.plist b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Resources/Info.plist index 4bc8dd5b32..38ea0898c1 100644 --- a/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Resources/Info.plist +++ b/Support/HockeySDKTests/OCMockitoIOS.framework/Versions/A/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 12C60 + 13A584 CFBundleDevelopmentRegion English CFBundleExecutable @@ -17,26 +17,26 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.23 + 1.0.0 CFBundleSignature ???? CFBundleVersion - 1 + 1.0.0 DTCompiler - + com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 4G2008a + 5A1413 DTPlatformVersion GM DTSDKBuild - 12C37 + 12D75 DTSDKName macosx10.8 DTXcode - 0452 + 0500 DTXcodeBuild - 4G2008a + 5A1413 NSHumanReadableCopyright - Copyright © 2012 Jonathan M. Reid + Copyright © 2013 Jonathan M. Reid