C# Class Microsoft.Silverlight.Testing.Harness.UnitTestHarnessEvents

A helper utility for firing events as the unit test harness from any component, internal or not. Enables expansion.
Mostra file Open project: garyjohnson/wpnest Class Usage Examples

Public Methods

Method Description
SendTestAssemblyCompleted ( TestAssemblyCompletedEventArgs e ) : void

Calls the test assembly completed event.

SendTestAssemblyStarting ( TestAssemblyStartingEventArgs e ) : void

Calls the test assembly starting event.

SendTestClassCompleted ( TestClassCompletedEventArgs e ) : void

Calls the test class completed event.

SendTestClassStarting ( TestClassStartingEventArgs e ) : void

Calls the test class starting event handlers.

SendTestMethodCompleted ( TestMethodCompletedEventArgs e ) : void

Calls the test method completed event.

SendTestMethodStarting ( Microsoft.Silverlight.Testing.Harness.TestMethodStartingEventArgs e ) : void

Calls the test method starting event.

SendTestRunStarting ( TestRunStartingEventArgs e ) : void

Calls the test run starting event.

UnitTestHarnessEvents ( UnitTestHarness harness ) : System

Initializes a new intance of the UnitTestHarnessEvents helper.

Method Details

SendTestAssemblyCompleted() public method

Calls the test assembly completed event.

SendTestAssemblyStarting() public method

Calls the test assembly starting event.

SendTestClassCompleted() public method

Calls the test class completed event.
public SendTestClassCompleted ( TestClassCompletedEventArgs e ) : void
e TestClassCompletedEventArgs The event data.
return void

SendTestClassStarting() public method

Calls the test class starting event handlers.
public SendTestClassStarting ( TestClassStartingEventArgs e ) : void
e TestClassStartingEventArgs The event data.
return void

SendTestMethodCompleted() public method

Calls the test method completed event.
public SendTestMethodCompleted ( TestMethodCompletedEventArgs e ) : void
e TestMethodCompletedEventArgs The event data.
return void

SendTestMethodStarting() public method

Calls the test method starting event.
public SendTestMethodStarting ( Microsoft.Silverlight.Testing.Harness.TestMethodStartingEventArgs e ) : void
e Microsoft.Silverlight.Testing.Harness.TestMethodStartingEventArgs The event data.
return void

SendTestRunStarting() public method

Calls the test run starting event.
public SendTestRunStarting ( TestRunStartingEventArgs e ) : void
e TestRunStartingEventArgs The event data.
return void

UnitTestHarnessEvents() public method

Initializes a new intance of the UnitTestHarnessEvents helper.
public UnitTestHarnessEvents ( UnitTestHarness harness ) : System
harness UnitTestHarness The harness reference.
return System