Add a constructor with a default factory for TestCommandQueueFactory.
continuous-integration/drone/tag Build is passing Details

main 0.9.2
KKlochko 2 years ago
parent b1ef8dc32f
commit 1e3446a431

@ -9,6 +9,11 @@ public class TestCommandQueueFactory {
private ArrayList<Test> tests;
private TestCommandFactory factory;
public TestCommandQueueFactory(ArrayList<Test> tests) {
setTests(tests);
setFactory(new TestCommandFactory());
}
public TestCommandQueueFactory(ArrayList<Test> tests, TestCommandFactory factory) {
setTests(tests);
setFactory(factory);

Loading…
Cancel
Save