Sha256: 87100d1bd4603f814ee2cd48ba6055c3ecc7bbfe0000ebc8aad96008306616d4
Contents?: true
Size: 766 Bytes
Versions: 9
Compression:
Stored size: 766 Bytes
Contents
#import "GHScenarioOutline.h" #import "GHScenarioDefinition_Private.h" @interface GHScenarioOutline () @property (nonatomic, strong) NSArray<GHExamples *> * examples; @end @implementation GHScenarioOutline @synthesize examples; @synthesize tags; - (id)initWithTags:(NSArray<GHTag *> *)theTags location:(GHLocation *)theLocation keyword:(NSString *)theKeyword name:(NSString *)theName description:(NSString *)theDescription steps:(NSArray<GHStep *> *)theSteps examples:(NSArray<GHExamples *> *)theExamples { if (self = [super initWithLocation: theLocation keyword: theKeyword name: theName description: theDescription steps: theSteps]) { examples = theExamples; tags = theTags; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems