CVB.Net 15.0
Loading...
Searching...
No Matches
TestResultFactory Class Referenceabstract

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< StartProgressReportEventArgsStartProgressReport
 Event that will be fired when a new progress stage was initiated.
 
EventHandler< ProgressReportEventArgsProgressReport
 Event that informs about a progress step in the given stage.
 
EventHandler< EndProgressReportEventArgsEndProgressReport
 Event that informs about the finalization of a given stage.
 

Detailed Description

Base class for test factory classes.

Member Function Documentation

◆ OnEndProgressReport()

virtual void OnEndProgressReport ( int id)
protectedvirtual

Event raiser.

Parameters
idID for which the progress report terminates.

◆ OnProgressReport()

virtual void OnProgressReport ( int id,
ref bool retval )
protectedvirtual

Event raiser.

Parameters
idID for which the progress report call happened.
retvalWhen set to true the operation will continue, when set to false it will terminate at the next possible opportunity.

◆ OnStartProgressReport()

virtual void OnStartProgressReport ( int id,
string caption,
int stepsTotal )
protectedvirtual

Event raiser.

Parameters
idID for which progress reporting starts.
captionCaption under which to report.
stepsTotalTotal number of steps (= calls to OnProgressReport(int, ref bool)) to expect.