Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

java: require all GherkinDialect properties to be non-null #329

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions java/src/main/java/io/cucumber/gherkin/GherkinDialect.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;

import static java.util.Collections.unmodifiableList;
import static java.util.Objects.requireNonNull;

public final class GherkinDialect {
private final String language;
Expand All @@ -28,20 +30,20 @@ public final class GherkinDialect {
private final Map<String, List<StepKeywordType>> stepKeywordsTypes;

GherkinDialect(String language, String name, String nativeName, List<String> featureKeywords, List<String> ruleKeywords, List<String> scenarioKeywords, List<String> scenarioOutlineKeywords, List<String> backgroundKeywords, List<String> examplesKeywords, List<String> givenKeywords, List<String> whenKeywords, List<String> thenKeywords, List<String> andKeywords, List<String> butKeywords) {
this.language = language;
this.name = name;
this.nativeName = nativeName;
this.featureKeywords = featureKeywords;
this.ruleKeywords = ruleKeywords;
this.scenarioKeywords = scenarioKeywords;
this.scenarioOutlineKeywords = scenarioOutlineKeywords;
this.backgroundKeywords = backgroundKeywords;
this.examplesKeywords = examplesKeywords;
this.givenKeywords = givenKeywords;
this.whenKeywords = whenKeywords;
this.thenKeywords = thenKeywords;
this.andKeywords = andKeywords;
this.butKeywords = butKeywords;
this.language = requireNonNull(language);
this.name = requireNonNull(name);
this.nativeName = requireNonNull(nativeName);
this.featureKeywords = requireNonNull(featureKeywords);
this.ruleKeywords = requireNonNull(ruleKeywords);
this.scenarioKeywords = requireNonNull(scenarioKeywords);
this.scenarioOutlineKeywords = requireNonNull(scenarioOutlineKeywords);
this.backgroundKeywords = requireNonNull(backgroundKeywords);
this.examplesKeywords = requireNonNull(examplesKeywords);
this.givenKeywords = requireNonNull(givenKeywords);
this.whenKeywords = requireNonNull(whenKeywords);
this.thenKeywords = requireNonNull(thenKeywords);
this.andKeywords = requireNonNull(andKeywords);
this.butKeywords = requireNonNull(butKeywords);

List<String> stepKeywords = new ArrayList<>();
stepKeywords.addAll(givenKeywords);
Expand Down