Interface IFixtureBuilder
The IFixtureBuilder interface is exposed by a class that knows how to build test fixtures from a specified type. In general, it is exposed by an attribute, but it may be implemented in a helper class used by the attribute in some cases.
Namespace: NUnit.Framework.Interfaces
Assembly: nunit.framework.dll
Syntax
public interface IFixtureBuilder
Methods
View SourceBuildFrom(ITypeInfo)
Builds any number of test fixtures from the specified type.
Declaration
IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo)
Parameters
| Type | Name | Description |
|---|---|---|
| ITypeInfo | typeInfo | The type info of the fixture to be used. |
Returns
| Type | Description |
|---|---|
| IEnumerable<TestSuite> |