示例#1
0
 public GherkinCodeCompletionWord(GherkinKeyword keyword, IAppSettings appSettings)
 {
     this.Keyword     = keyword;
     this.Text        = keyword.Text.Trim();
     this.AppSettings = appSettings;
 }
示例#2
0
 private bool IsThen(Token token)
 {
     return(GherkinKeyword.IsStepKeyword(token.MatchedKeyword, token.MatchedGherkinDialect.ThenStepKeywords));
 }