Class TheoryData<T1, T2, T3, T4>
Represents a set of data for a theory with 4 parameters. Data can be added to the data set using the collection initializer syntax.
Namespace: Xunit
Assembly: xunit.core.dll
Syntax
public class TheoryData<T1, T2, T3, T4> : TheoryData
Type Parameters
Name | Description |
---|---|
T1 | The first parameter type. |
T2 | The second parameter type. |
T3 | The third parameter type. |
T4 | The fourth parameter type. |
Methods
| Improve this Doc View SourceAdd(T1, T2, T3, T4)
Adds data to the theory data set.
Declaration
public void Add(T1 p1, T2 p2, T3 p3, T4 p4)
Parameters
Type | Name | Description |
---|---|---|
T1 | p1 | The first data value. |
T2 | p2 | The second data value. |
T3 | p3 | The third data value. |
T4 | p4 | The fourth data value. |