Table of Contents

Interface IFixtureBuilder

Namespace
NUnit.Framework.Interfaces
Assembly
nunit.framework.dll

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.

public interface IFixtureBuilder

Methods

BuildFrom(ITypeInfo)

Builds any number of test fixtures from the specified type.

IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo)

Parameters

typeInfo ITypeInfo

The type info of the fixture to be used.

Returns

IEnumerable<TestSuite>