blob: 9bd90162d5f6bdfea53982640aa92e18525eb515 [file] [log] [blame] [edit]
#import <Foundation/Foundation.h>
@class
SPTExample
, SPTExampleGroup
;
@interface SPTTestSuite : NSObject
@property (nonatomic, strong) SPTExampleGroup *rootGroup;
@property (nonatomic, strong) NSMutableArray *groupStack;
@property (nonatomic, strong) NSArray *compiledExamples;
@property (nonatomic, copy) NSString *fileName;
@property (nonatomic) NSUInteger lineNumber;
@property (nonatomic, getter = isDisabled) BOOL disabled;
@property (nonatomic) BOOL hasFocusedExamples;
- (SPTExampleGroup *)currentGroup;
- (void)compile;
@end