예제 #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));
 }