NUnit.Core.TestAgent.CreateRunner(int)

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

1 Examples 7

19 Source : ProcessRunner.cs
with MIT License
from roozbehid

public override bool Load(TestPackage package)
		{
			if ( this.agent == null )
				this.agent = Services.TestAgency.GetAgent( AgentType.ProcessAgent, 5000 );		
	
			if ( this.TestRunner == null )
				this.TestRunner = agent.CreateRunner(this.runnerID);

			return base.Load (package);
		}