com.trivago.cluecumber.rendering.pages.pojos.pagecollections.StartPageCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluecumber-report-plugin
Show all versions of cluecumber-report-plugin
Plugin for generating clear Cucumber BDD test result reports.
package com.trivago.cluecumber.rendering.pages.pojos.pagecollections;
import com.trivago.cluecumber.constants.PluginSettings;
public class StartPageCollection {
private PluginSettings.StartPage startPage;
private boolean redirectToFirstScenario;
public StartPageCollection(PluginSettings.StartPage startPage, boolean redirectToFirstScenario) {
this.startPage = startPage;
this.redirectToFirstScenario = redirectToFirstScenario;
}
public PluginSettings.StartPage getStartPage() {
return startPage;
}
public boolean isRedirectToFirstScenario() {
return redirectToFirstScenario;
}
}