Package jp.vmi.selenium.runner.model
Interface ISuite<T extends ITest<C>,C extends ICommand>
- Type Parameters:
T- type of test case.C- type of test command.
- All Superinterfaces:
Id
- All Known Implementing Classes:
SideSuite
public interface ISuite<T extends ITest<C>,C extends ICommand> extends Id
Test suite.
-
Method Summary
Modifier and Type Method Description List<T>getTests()Get list of test cases.intgetTimeout()Get timeout.booleanisParallel()Get parallel flag.booleanisPersistSession()Get persist session flag.
-
Method Details
-
getTests
Get list of test cases.- Returns:
- list of test cases
-
isParallel
boolean isParallel()Get parallel flag.- Returns:
- parallel if true
-
getTimeout
int getTimeout()Get timeout.- Returns:
- timeout
-
isPersistSession
boolean isPersistSession()Get persist session flag.- Returns:
- persist session if true
-