Back to Nunit

TestFixtureSource

docs/articles/nunit/writing-tests/attributes/testfixturesource.md

latest4.4 KB
Original Source

TestFixtureSource

TestFixtureSourceAttribute is used on a parameterized fixture to identify the source from which the required constructor arguments will be provided. The data is kept separate from the fixture itself and may be used by multiple fixtures. See Parameterized Tests for a general introduction to tests with arguments.

Usage

Consider a test fixture class taking two parameters in its constructor, a string and an int. We can specify the test and its data using one of the forms of TestFixtureSourceAttribute:

Form 1 - [TestFixtureSource(string sourceName)]

[!code-csharpBasicTestFixtureSource]

The single attribute argument in this form is a string representing the name of the source used to provide arguments for constructing the TestFixture. It has the following characteristics:

  • It may be a field, property or method in the test class.
  • It must be static.
  • It must return an IEnumerable or a type that implements IEnumerable. For fields an array is generally used. For properties and methods, you may return an array or implement your own iterator.
    • Methods may also return an IAsyncEnumerable or a type that implements IAsyncEnumerable. (NUnit 4+)
    • Methods may be async by wrapping the return type in a Task<T>. (NUnit 3.14+)
  • The individual items returned by the enumerator must either be object arrays or derive from the TestFixtureParameters class. Arguments must be consistent with the fixture constructor.

Form 2 - [TestFixtureSource(Type sourceType, string sourceName)]

[!code-csharpStaticPropertyInAnotherClass]

The first argument of the attribute in this form is a Type representing the class that will provide the test fixture data.

The second argument is a string representing the name of the source used to provide test fixtures. It has the following characteristics:

  • It may be a field, property or method in the test class.
  • It must be static.
  • It must return an IEnumerable or a type that implements IEnumerable. For fields an array is generally used. For properties and methods, you may return an array or implement your own iterator.
    • Methods may also return an IAsyncEnumerable or a type that implements IAsyncEnumerable. (NUnit 4+)
    • Methods may be async by wrapping the return type in a Task<T>. (NUnit 3.14+)
  • The individual items returned by the enumerator must either be object arrays or derive from the TestFixtureParameters class. Arguments must be consistent with the fixture constructor.

Form 3 - [TestFixtureSource(Type sourceType)]

[!code-csharpSourceFromEnumerable]

The Type argument in this form represents the class that provides test fixtures. It must have a default constructor and implement IEnumerable.

The individual items returned by the enumerator must either be object arrays or derive from the TestFixtureParameters class. Arguments must be consistent with the fixture constructor.

Named Parameters

TestFixtureSourceAttribute supports two named parameters:

  • Category is used to assign one or more categories to every test fixture returned from this source.
  • TypeArgs can be used to explicitly specify the Types to be used when constructing a generic test fixture. (NUnit 4.5+)

Test Fixture Construction

In constructing fixtures, NUnit uses each item returned by the enumerator as follows:

  • If it is an object deriving from TestFixtureParameters, its properties are used to provide the test fixture's data. NUnit provides the TestFixtureData class for this purpose.
  • If it is an object[], its members are used to provide the arguments for the method. This is the approach taken in the examples above.

Notes

  1. It is recommended that the SourceType not be the same as the test fixture class. It may be a nested class, however, and probably should be if the data is only used within that fixture.
  2. A generic IEnumerable and IEnumerator may be used but NUnit will actually deal with the underlying IEnumerator in the current release.
  3. The GetEnumerator method may use yield statements or simply return the enumerator for an array or other collection held by the class.