-
Notifications
You must be signed in to change notification settings - Fork 157
TestFixtureSource Attribute
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.
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:
[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 implementsIEnumerable
. 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.
[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 implementsIEnumerable
. 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.
[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.
TestCaseSourceAttribute
supports one named parameter:
- Category is used to assign one or more categories to every test case returned from this source.
In constructing tests, 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 case. 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 three examples above.
-
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.
-
A generic
IEnumerable
andIEnumerator
may be used but NUnit will actually deal with the underlyingIEnumerator
in the current release. -
The GetEnumerator method may use yield statements or simply return the enumerator for an array or other collection held by the class.
Copyright (c) 2018 The NUnit Project - Licensed under CC BY-NC-SA 4.0
-
NUnit
-
Release Notes
-
License
- Getting Started
- Writing Tests
- Running Tests
- Extending NUnit
- Technical Notes
-
Release Notes
- NUnit Xamarin Runners
- VS Test Adapter
- VS Test Generator
- NUnit Analyzers