use of de.otto.jlineup.config.UrlConfig in project jlineup by otto-de.
the class ScreenshotsComparatorTest method setup.
@Before
public void setup() {
initMocks(this);
parameters = new Parameters();
JCommander jCommander = new JCommander(parameters);
jCommander.parse("-d", "src/test/resources/");
config = configBuilder().withUrls(ImmutableMap.of("http://url", new UrlConfig(ImmutableList.of("/"), 0.05f, null, null, null, null, ImmutableList.of(1001), 10000, 2, 0, 0, 0, null, 5))).withWindowHeight(WINDOW_HEIGHT).build();
testee = new ScreenshotsComparator(parameters, config, fileService, imageService);
}
Aggregations