IGLib  1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
NUnit.Framework.Api.ITestAssemblyBuilder Interface Reference

The ITestAssemblyBuilder interface is implemented by a class that is able to build a suite of tests given an assembly or an assembly filename. More...

+ Inheritance diagram for NUnit.Framework.Api.ITestAssemblyBuilder:

Public Member Functions

ITest Build (Assembly assembly, IDictionary options)
 Build a suite of tests from a provided assembly More...
 
ITest Build (string assemblyName, IDictionary options)
 Build a suite of tests given the filename of an assembly More...
 

Detailed Description

The ITestAssemblyBuilder interface is implemented by a class that is able to build a suite of tests given an assembly or an assembly filename.

Member Function Documentation

ITest NUnit.Framework.Api.ITestAssemblyBuilder.Build ( Assembly  assembly,
IDictionary  options 
)

Build a suite of tests from a provided assembly

Parameters
assemblyThe assembly from which tests are to be built
optionsA dictionary of options to use in building the suite
Returns
A TestSuite containing the tests found in the assembly

Implemented in NUnit.Framework.Api.DefaultTestAssemblyBuilder.

Referenced by NUnit.Framework.Internal.SetUpFixtureTests.AssemblySetUpFixtureReplacesAssemblyNodeInTree(), NUnit.Framework.Internal.SetUpFixtureTests.InvalidAssemblySetUpFixtureIsLoadedCorrectly(), NUnit.Framework.Api.NUnitTestAssemblyRunner.Load(), and NUnit.Framework.Internal.SetUpFixtureTests.NamespaceSetUpFixtureReplacesNamespaceNodeInTree().

ITest NUnit.Framework.Api.ITestAssemblyBuilder.Build ( string  assemblyName,
IDictionary  options 
)

Build a suite of tests given the filename of an assembly

Parameters
assemblyNameThe filename of the assembly from which tests are to be built
optionsA dictionary of options to use in building the suite
Returns
A TestSuite containing the tests found in the assembly

Implemented in NUnit.Framework.Api.DefaultTestAssemblyBuilder.


The documentation for this interface was generated from the following file: