Table of Contents

Interface ICombiningStrategy

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

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.

public interface ICombiningStrategy

Methods

GetTestCases(IEnumerable[])

Gets the test cases generated by the CombiningStrategy.

IEnumerable<ITestCaseData> GetTestCases(IEnumerable[] sources)

Parameters

sources IEnumerable[]

Returns

IEnumerable<ITestCaseData>

The test cases.