KWVerifying.h 419 B

12345678910111213141516171819202122232425
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. @class KWCallSite;
  8. @protocol KWVerifying<NSObject>
  9. @property (nonatomic, readonly) KWCallSite *callSite;
  10. - (NSString *)descriptionForAnonymousItNode;
  11. #pragma mark - Subjects
  12. @property (nonatomic, strong) id subject;
  13. #pragma mark - Ending Examples
  14. - (void)exampleWillEnd;
  15. @end