NUnit.Core.EventQueue.Enqueue(NUnit.Core.Event)

Here are the examples of the csharp api NUnit.Core.EventQueue.Enqueue(NUnit.Core.Event) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

9 Examples 7

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void RunStarted( string name, int testCount )
		{
			events.Enqueue( new RunStartedEvent( name, testCount ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void RunFinished( TestResult result )
		{
			events.Enqueue( new RunFinishedEvent( result ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void RunFinished( Exception exception )
		{
			events.Enqueue( new RunFinishedEvent( exception ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void TestStarted(TestName testName)
		{
			events.Enqueue( new TestStartedEvent( testName ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void TestOutput( TestOutput output )
		{
			events.Enqueue( new OutputEvent( output ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void TestFinished(TestCaseResult result)
		{
			events.Enqueue( new TestFinishedEvent( result ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void UnhandledException( Exception exception )
		{
			events.Enqueue( new UnhandledExceptionEvent( exception ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void SuiteFinished(TestSuiteResult result)
		{
			events.Enqueue( new SuiteFinishedEvent( result ) );
		}

19 Source : QueuingEventListener.cs
with MIT License
from roozbehid

public void SuiteStarted(TestName testName)
		{
			events.Enqueue( new SuiteStartedEvent( testName ) );
		}