Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public void | close()
Implements org. |
public void | invokeAll(List<? extends HierarchicalTestExecutorService.
the test tasks to be executed tasks)Implements org. |
public Future | submit(HierarchicalTestExecutorService.
the test task to be executed testTaskImplements org. |
SameThreadHierarchicalTestExecutorService | back to summary |
---|---|
public SameThreadHierarchicalTestExecutorService() |
close | back to summary |
---|---|
public void close() Implements org. Doc from org. Close this service and let it perform any required cleanup work. For example, thread-based implementations should usually close their thread pools in this method.
|
invokeAll | back to summary |
---|---|
public void invokeAll(List<? extends HierarchicalTestExecutorService. Implements org. Doc from org. Invoke all supplied test tasks and block until their execution has finished. Implementations may execute one or multiple of the supplied tasks in parallel as long as their execution mode is concurrent. Implementations must generally acquire and release each task's resource lock before and after its execution unless they execute all tests in the same thread which upholds the same guarantees.
|
submit | back to summary |
---|---|
public Future Implements org. Doc from org. Submit the supplied test task to be executed by this service. Implementations may execute the task asynchronously as long as its execution mode is concurrent. Implementations must generally acquire and release the task's resource lock before and after its execution unless they execute all tests in the same thread which upholds the same guarantees.
|