Method | Description | |
---|---|---|
CancelRun ( bool force ) : void |
Cancel (abort or stop) the ongoing run. If no run is in process, the call has no effect.
|
|
Dispatch ( WorkItem work ) : void |
Dispatch a single work item for execution. The first work item dispatched is saved as the top-level work item and a thread is created on which to run it. Subsequent calls come from the top level item or its descendants on the proper thread.
|
Method | Description | |
---|---|---|
RunnerThreadProc ( ) : void |
public CancelRun ( bool force ) : void | ||
force | bool | true if the run should be aborted, false if it should allow its currently running test to complete |
return | void |
public Dispatch ( WorkItem work ) : void | ||
work | WorkItem | The item to dispatch |
return | void |