KWBlockRaiseMatcher.h 413 B

12345678910111213141516171819
  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. @interface KWBlockRaiseMatcher : KWMatcher
  9. #pragma mark - Configuring Matchers
  10. - (void)raise;
  11. - (void)raiseWithName:(NSString *)aName;
  12. - (void)raiseWithReason:(NSString *)aReason;
  13. - (void)raiseWithName:(NSString *)aName reason:(NSString *)aReason;
  14. @end