Class TheoryData<T1, T2, T3, T4, T5, T6, T7>
Represents a set of data for a theory with 5 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, T5, T6, T7> : 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. |
T5 | The fifth parameter type. |
T6 | The sixth parameter type. |
T7 | The seventh parameter type. |
Methods
| Improve this Doc View SourceAdd(T1, T2, T3, T4, T5, T6, T7)
Adds data to the theory data set.
Declaration
public void Add(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
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. |
T5 | p5 | The fifth data value. |
T6 | p6 | The sixth data value. |
T7 | p7 | The seventh data value. |