KWExistVerifier.h 674 B

123456789101112131415161718192021222324252627
  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 "KWExpectationType.h"
  8. #import "KWVerifying.h"
  9. @class KWCallSite;
  10. @protocol KWReporting;
  11. @interface KWExistVerifier : NSObject<KWVerifying>
  12. #pragma mark - Initializing
  13. - (id)initWithExpectationType:(KWExpectationType)anExpectationType callSite:(KWCallSite *)aCallSite reporter:(id<KWReporting>)aReporter;
  14. + (id)existVerifierWithExpectationType:(KWExpectationType)anExpectationType callSite:(KWCallSite *)aCallSite reporter:(id<KWReporting>)aReporter;
  15. #pragma mark - Properties
  16. @property (nonatomic, strong) id subject;
  17. @end