Assemblies
Namespaces
Types
ActionTargets
ApartmentAttribute
Assert
AssertBase
AssertionException
Assume
AsyncTestDelegate
AuthorAttribute
CancelAfterAttribute
CategoryAttribute
CombinatorialAttribute
CombiningStrategyAttribute
Contains
CultureAttribute
DatapointAttribute
DatapointsAttribute
DatapointSourceAttribute
DefaultFloatingPointToleranceAttribute
DescriptionAttribute
Does
EqualNumericWithoutUsingConstraintExtensions
ExceptionExtensions
ExecutionHookAttribute
ExecutionHookMethodsAttribute
ExplicitAttribute
Extensions
FixtureLifeCycleAttribute
Guard
Has
IEqualWithUsingConstraint<T>
IEqualWithUsingConstraintExtensions
IgnoreAttribute
IgnoredTestCaseData
IgnoreException
IncludeExcludeAttribute
InconclusiveException
Is
ITestAction
Iz
LevelOfParallelismAttribute
LifeCycle
MaxTimeAttribute
MultipleAssertException
NetPlatformAttribute
NonParallelizableAttribute
NonTestAssemblyAttribute
NUnitAttribute
NUnitString
OneTimeSetUpAttribute
OneTimeTearDownAttribute
OrderAttribute
OSPlatformConverter
PairwiseAttribute
ParallelizableAttribute
ParallelScope
PlatformAttribute
PropertyAttribute
RandomAttribute
RangeAttribute
RepeatAttribute
RequiresThreadAttribute
Result
Result<T>
ResultStateException
RetryAttribute
SequentialAttribute
SetCultureAttribute
SetUICultureAttribute
SetUpAttribute
SetUpFixtureAttribute
SingleThreadedAttribute
SuccessException
TearDownAttribute
TestActionAttribute
TestAssemblyDirectoryResolveAttribute
TestAttribute
TestCaseAttribute
TestCaseAttribute<T>
TestCaseAttribute<T1, T2>
TestCaseAttribute<T1, T2, T3>
TestCaseAttribute<T1, T2, T3, T4>
TestCaseAttribute<T1, T2, T3, T4, T5>
TestCaseData
TestCaseData<T>
TestCaseData<T1, T2>
TestCaseData<T1, T2, T3>
TestCaseData<T1, T2, T3, T4>
TestCaseData<T1, T2, T3, T4, T5>
TestCaseSourceAttribute
TestContext
TestDelegate
TestFixtureAttribute
TestFixtureData
TestFixtureSourceAttribute
TestOfAttribute
TestParameters
TheoryAttribute
Throws
TimeoutAttribute
ValuesAttribute
ValueSourceAttribute
Warn
XmlExtensions
NUnit.Framework.TestCaseData
The TestCaseData class represents a set of arguments
and other parameter info to be used for a parameterized
test case. It is derived from TestCaseParameters and adds a
fluent syntax for use in initializing the test case.
namespace NUnit .
Framework
{
public class TestCaseData :
TestCaseParameters
{
public TestCaseData (
params object []
args );
public TestCaseData (
object arg );
public TestCaseData (
object arg1 ,
object arg2 );
public TestCaseData (
object arg1 ,
object arg2 ,
object arg3 );
public TestCaseData Returns (
object result );
public TestCaseData SetName (
string name );
public TestCaseData SetArgDisplayNames (
params string []
displayNames );
public TestCaseData SetArgDisplayNames (
params object []
displayNames );
public TestCaseData SetDescription (
string description );
public TestCaseData SetCategory (
string category );
public TestCaseData SetProperty (
string propName ,
string propValue );
public TestCaseData SetProperty (
string propName ,
int propValue );
public TestCaseData SetProperty (
string propName ,
double propValue );
public TestCaseData Explicit ();
public TestCaseData Explicit (
string reason );
public IgnoredTestCaseData Ignore (
string reason );
}
}