Skip to content

TestFixtureSource Attribute

jnm2 edited this page Jun 14, 2017 · 5 revisions

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)]

[TestFixtureSource("FixtureArgs")]
public class MyTestClass
{
    public MyTestClass(string word, int num) { ... }

    ...

    static object [] FixtureArgs = {
        new object[] { "Question", 1 },
        new object[] { "Answer", 42 }
    };
}

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.

  • 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)]

[TestFixtureSource(typeof(AnotherClass), "FixtureArgs")]
public class MyTestClass
{
    public MyTestClass(string word, int num) { ... }

    ...
}

class AnotherClass
{
    static object [] FixtureArgs = {
        new object[] { "Question", 1 },
        new object[] { "Answer", 42 }
    };
}

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.

  • 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)]

[TestFixtureSource(typeof(FixtureArgs))]
public class MyTestClass
{
    public MyTestClass(string word, int num) { ... }

    ...
}

class FixtureArgs: IEnumerable
{
    public IEnumerator GetEnumerator()
    {
        yield return new object[] { "Question", 1 };
        yield return new object[] { "Answer", 42 };
    }
}

The Type argument in this form represents the class that provides test cases. 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

TestCaseSourceAttribute supports one named parameter:

  • Category is used to assign one or more categories to every test case returned from this source.

Test Case Construction

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

  1. If it is an object deriving from TestFixtureParameters, its properties are used to provide the test case. NUnit provides the TestFixtureData class for this purpose.

  2. If it is an object[], its members are used to provide the arguments for the method. This is the approach taken in the three 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.

Clone this wiki locally