com.vmlens.report.builder.LoopAndRun Maven / Gradle / Ivy
The newest version!
package com.vmlens.report.builder;
import com.vmlens.report.element.RunElement;
import com.vmlens.report.element.TestLoop;
import java.util.List;
public class LoopAndRun {
private final TestLoop loop;
private final List runElements;
public LoopAndRun(TestLoop loop, List runElements) {
this.loop = loop;
this.runElements = runElements;
}
public TestLoop loop() {
return loop;
}
public List runElements() {
return runElements;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy