Method | Description | |
---|---|---|
Create ( Func |
Create a new run method manager object.
|
|
Create ( Func |
Create a new run method manager object.
|
|
Run ( ) : void |
A completely synchronous implementation, unless overridden, that calls RunNextStep() until the harness is finished. The default implementation will not work with a presentation-rich test environment.
|
|
RunDispatcher ( Func |
Creates a new RunMethodManager, taking in a conditional delegate to run for each step to see if more work remains.
|
Method | Description | |
---|---|---|
OnComplete ( ) : void |
Calls the Complete event handler.
|
|
RunNextStep ( ) : bool |
Calls a conditional delegate, and returns whether there is more work to be done.
|
public static Create ( Func |
||
runNextStep | Func |
/// Conditional indicating whether more work will remain after /// performing the work. /// |
return |
public static Create ( Func |
||
runNextStep | Func |
/// Conditional indicating whether more work will remain after /// performing the work. /// |
dispatcher | A Dispatcher instance. | |
return |
public RunDispatcher ( Func |
||
runNextStep | Func |
/// The conditional delegate that performs work and indicates whether /// additional work remains. /// |
return | System |