KWContainMatcher.h 510 B

1234567891011121314151617181920212223242526
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. #import "KWMatcher.h"
  8. #import "KWMatchVerifier.h"
  9. @interface KWContainMatcher : KWMatcher
  10. #pragma mark - Configuring Matchers
  11. - (void)contain:(id)anObject;
  12. - (void)containObjectsInArray:(NSArray *)anArray;
  13. @end
  14. @interface KWMatchVerifier(KWContainMatcherAdditions)
  15. #pragma mark - Verifying
  16. - (void)containObjects:(id)firstObject, ... NS_REQUIRES_NIL_TERMINATION;
  17. @end