// // OCHamcrest - HCIsNil.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 HCIsNil : HCBaseMatcher + (id)isNil; @end OBJC_EXPORT id HC_nilValue(void); /** Matches if object is @c nil. (In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym @c HC_nilValue instead.) @ingroup object_matchers */ #ifdef HC_SHORTHAND #define nilValue() HC_nilValue() #endif OBJC_EXPORT id HC_notNilValue(void); /** Matches if object is not @c nil. (In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym @c HC_notNilValue instead.) @ingroup object_matchers */ #ifdef HC_SHORTHAND #define notNilValue() HC_notNilValue() #endif