in.mayurshah.DTO.TestSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-helper Show documentation
Show all versions of selenium-helper Show documentation
selenium-helper is developed to easily automate test cases using Selenium WebDriver.
The newest version!
package in.mayurshah.DTO;
import java.util.ArrayList;
import java.util.List;
import in.mayurshah.util.MiscellaneousFunctions;
public class TestSuite
{
private String TestSuiteName;
private String TestDateTime;
private List TestCases;
public TestSuite(){
TestSuiteName = "";
TestDateTime = MiscellaneousFunctions.getTimeStamp();
TestCases = new ArrayList();
}
public final String getTestSuiteName()
{
return this.TestSuiteName;
}
public final void setTestSuiteName(String value)
{
this.TestSuiteName = value;
}
public final String getTestDateTime()
{
return this.TestDateTime;
}
public final void setTestDateTime(String value)
{
this.TestDateTime = value;
}
public List getTestCases() {
return TestCases;
}
public void addTestCases(TestCase testCase) {
TestCases.add(testCase);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy