Base class for test factory classes. More...
Inherited by HoldoutTestResultFactory, and SampleTestResultFactory.
Protected Member Functions | |
TestResultFactory () | |
ctor (internal). | |
virtual void | OnStartProgressReport (int id, string caption, int stepsTotal) |
Event raiser. | |
virtual void | OnProgressReport (int id, ref bool retval) |
Event raiser. | |
virtual void | OnEndProgressReport (int id) |
Event raiser. | |
Events | |
EventHandler< StartProgressReportEventArgs > | StartProgressReport |
Event that will be fired when a new progress stage was initiated. | |
EventHandler< ProgressReportEventArgs > | ProgressReport |
Event that informs about a progress step in the given stage. | |
EventHandler< EndProgressReportEventArgs > | EndProgressReport |
Event that informs about the finalization of a given stage. | |
Base class for test factory classes.
|
protectedvirtual |
Event raiser.
id | ID for which the progress report terminates. |
|
protectedvirtual |
Event raiser.
id | ID for which the progress report call happened. |
retval | When set to true the operation will continue, when set to false it will terminate at the next possible opportunity. |
|
protectedvirtual |
Event raiser.
id | ID for which progress reporting starts. |
caption | Caption under which to report. |
stepsTotal | Total number of steps (= calls to OnProgressReport(int, ref bool)) to expect. |