NUnit.Core.TestSuiteBuilder.Build(NUnit.Core.TestPackage)

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

1 Examples 7

19 Source : SimpleTestRunner.cs
with MIT License
from roozbehid

public bool Load( TestPackage package )
		{
			this.builder = new TestSuiteBuilder();

			this.test = builder.Build( package );
			if ( test == null ) return false;

			test.SetRunnerID( this.runnerID, true );
			return true;
		}