1 package com.griddynamics.jagger.user.test.configurations;
3 import com.griddynamics.jagger.user.test.configurations.auxiliary.Id;
5 import java.util.ArrayList;
6 import java.util.Collections;
23 private final String id;
24 private final List<JLoadTest> tests;
47 List<JLoadTest> testList =
new ArrayList<>();
49 Collections.addAll(testList, tests);
51 return new Builder(
id, testList);
55 this.
id = builder.id.value();
56 this.tests = builder.tests;
62 private final List<JLoadTest> tests;