// // OCHamcrest - HCBaseMatcher.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 #import #import // Convenience header, to provide OBJC_EXPORT /** Base class for all HCMatcher implementations. Most implementations can just implement @c -matches: and let -matches:describingMismatchTo: call it. But if it makes more sense to generate the mismatch description during the matching, override -matches:describingMismatchTo: and have @c -matches: call it with a @c nil description. @ingroup core */ @interface HCBaseMatcher : NSObject @end