12345678910111213141516171819 |
- //
- // Licensed under the terms in License.txt
- //
- // Copyright 2010 Allen Ding. All rights reserved.
- //
- #import "KiwiConfiguration.h"
- #import "KWMatcher.h"
- @interface KWBlockRaiseMatcher : KWMatcher
- #pragma mark - Configuring Matchers
- - (void)raise;
- - (void)raiseWithName:(NSString *)aName;
- - (void)raiseWithReason:(NSString *)aReason;
- - (void)raiseWithName:(NSString *)aName reason:(NSString *)aReason;
- @end
|