KWHaveValueMatcher.h 484 B

123456789101112131415161718192021
  1. //
  2. // KWHaveValueMatcher.h
  3. // Kiwi
  4. //
  5. // Created by Luke Redpath on 24/01/2011.
  6. // Copyright 2011 Allen Ding. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "KWMatcher.h"
  10. @interface KWHaveValueMatcher : KWMatcher
  11. #pragma mark - Configuring Matchers
  12. - (void)haveValue:(id)value forKey:(NSString *)key;
  13. - (void)haveValue:(id)value forKeyPath:(NSString *)keyPath;
  14. - (void)haveValueForKey:(NSString *)key;
  15. - (void)haveValueForKeyPath:(NSString *)keyPath;
  16. @end