Interface ICombiningStrategy
CombiningStrategy is the abstract base for classes that know how to combine values provided for individual test parameters to create a set of test cases.
Namespace: NUnit.Framework.Interfaces
Assembly: nunit.framework.dll
Syntax
public interface ICombiningStrategy
Methods
View SourceGetTestCases(IEnumerable[])
Gets the test cases generated by the CombiningStrategy.
Declaration
IEnumerable<ITestCaseData> GetTestCases(IEnumerable[] sources)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable[] | sources |
Returns
Type | Description |
---|---|
IEnumerable<ITestCaseData> | The test cases. |