main
 1//
 2// Licensed under the terms in License.txt
 3//
 4// Copyright 2010 Allen Ding. All rights reserved.
 5//
 6
 7#import "KiwiConfiguration.h"
 8#import "KWBlockNode.h"
 9#import "KWExampleNode.h"
10
11@class KWPendingNode;
12@class KWExample;
13@class KWContextNode;
14
15@interface KWItNode : KWBlockNode<KWExampleNode>
16
17@property (nonatomic, assign) KWExample *example;
18@property (nonatomic, retain, readonly) KWContextNode *context;
19
20#pragma mark -
21#pragma mark Initializing
22
23+ (id)itNodeWithCallSite:(KWCallSite *)aCallSite 
24             description:(NSString *)aDescription 
25                 context:(KWContextNode *)context 
26                   block:(KWVoidBlock)aBlock;
27
28@end