Table of Contents

Interface IParameterDataProvider

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

Provides data for a single test parameter.

public interface IParameterDataProvider

Methods

GetDataFor(IParameterInfo)

Retrieves a list of arguments which can be passed to the specified parameter.

IEnumerable GetDataFor(IParameterInfo parameter)

Parameters

parameter IParameterInfo

The parameter of a parameterized test.

Returns

IEnumerable

HasDataFor(IParameterInfo)

Determines whether any data is available for a parameter.

bool HasDataFor(IParameterInfo parameter)

Parameters

parameter IParameterInfo

The parameter of a parameterized test.

Returns

bool