Sha256: f312931d20d22928f6918dee714a3daa0d751f9719e6a98e7581521e85a3961e
Contents?: true
Size: 1.61 KB
Versions: 9
Compression:
Stored size: 1.61 KB
Contents
#import <Foundation/Foundation.h> @interface GHGherkinDialect : NSObject @property (nonatomic, readonly) NSString * language; @property (nonatomic, readonly) NSArray<NSString *> * featureKeywords; @property (nonatomic, readonly) NSArray<NSString *> * backgroundKeywords; @property (nonatomic, readonly) NSArray<NSString *> * scenarioKeywords; @property (nonatomic, readonly) NSArray<NSString *> * scenarioOutlineKeywords; @property (nonatomic, readonly) NSArray<NSString *> * examplesKeywords; @property (nonatomic, readonly) NSArray<NSString *> * givenStepKeywords; @property (nonatomic, readonly) NSArray<NSString *> * whenStepKeywords; @property (nonatomic, readonly) NSArray<NSString *> * thenStepKeywords; @property (nonatomic, readonly) NSArray<NSString *> * andStepKeywords; @property (nonatomic, readonly) NSArray<NSString *> * butStepKeywords; @property (nonatomic, readonly) NSArray<NSString *> * stepKeywords; - (id)initWithLanguage:(NSString *)theLanguage featureKeywords:(NSArray<NSString *> *)theFeatureKeywords backgroundKeywords:(NSArray<NSString *> *)theBackgroundKeywords scenarioKeywords:(NSArray<NSString *> *)theScenarioKeywords scenarioOutlineKeywords:(NSArray<NSString *> *)theScenarioOutlineKeywords examplesKeywords:(NSArray<NSString *> *)theExamplesKeywords givenStepKeywords:(NSArray<NSString *> *)theGivenStepKeywords whenStepKeywords:(NSArray<NSString *> *)theWhenStepKeywords thenStepKeywords:(NSArray<NSString *> *)theThenStepKeywords andStepKeywords:(NSArray<NSString *> *)theAndStepKeywords butStepKeywords:(NSArray<NSString *> *)theButStepKeywords; @end
Version data entries
9 entries across 9 versions & 1 rubygems