-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathParametersSample.cs
212 lines (166 loc) · 4.75 KB
/
ParametersSample.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
public class ParametersSample
{
public static IEnumerable<object[]> GetDecimalData()
{
yield return
[
(decimal) 1.1
];
}
#region UseTextForParametersInstanceXunitV3
[Theory]
[InlineData("Value1")]
[InlineData("Value2")]
public Task UseTextForParameters(string arg)
{
var settings = new VerifySettings();
settings.UseTextForParameters(arg);
return Verify(arg + "UseTextForParameters", settings);
}
#endregion
#region UseTextForParametersFluentXunitV3
[Theory]
[InlineData("Value1")]
[InlineData("Value2")]
public Task UseTextForParametersFluent(string arg) =>
Verify(arg + "UseTextForParametersFluent")
.UseTextForParameters(arg);
#endregion
#region IgnoreParametersForVerifiedXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersForVerified(string arg)
{
var settings = new VerifySettings();
settings.IgnoreParametersForVerified(arg);
return Verify("value", settings);
}
#endregion
#region IgnoreParametersForVerifiedFluentXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersForVerifiedFluent(string arg) =>
Verify("value")
.IgnoreParametersForVerified(arg);
#endregion
#region IgnoreParametersForVerifiedCustomParamsXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersForVerifiedCustomParams(string arg)
{
var settings = new VerifySettings();
settings.IgnoreParametersForVerified($"Number{arg}");
return Verify("value", settings);
}
#endregion
#region IgnoreParametersForVerifiedCustomParamsFluentXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersForVerifiedCustomParamsFluent(string arg) =>
Verify("value")
.IgnoreParametersForVerified($"Number{arg}");
#endregion
#region IgnoreParametersXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParameters(string arg)
{
var settings = new VerifySettings();
settings.UseParameters(arg);
settings.IgnoreParameters(nameof(arg));
return Verify("value", settings);
}
#endregion
#region IgnoreParametersFluentXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersFluent(string arg) =>
Verify("value")
.UseParameters(arg)
.IgnoreParameters(nameof(arg));
#endregion
#region IgnoreParametersCustomParamsXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersCustomParams(string arg)
{
var settings = new VerifySettings();
settings.UseParameters($"Number{arg}");
settings.IgnoreParameters(nameof(arg));
return Verify("value", settings);
}
#endregion
#region IgnoreParametersCustomParamsFluentXunitV3
[Theory]
[InlineData("One")]
[InlineData("Two")]
public Task IgnoreParametersCustomParamsFluent(string arg) =>
Verify("value")
.UseParameters(arg)
.IgnoreParameters(nameof(arg));
#endregion
[Theory]
[MemberData(nameof(GetDecimalData))]
public Task Decimal(decimal arg) =>
Verify(arg);
[Theory]
[InlineData((float) 1.1)]
public Task Float(float arg) =>
Verify(arg);
[Theory]
[InlineData(1.1d)]
public Task Double(double arg) =>
Verify(arg);
#region InlineDataXunitV3
[Theory]
[InlineData("Value1")]
[InlineData("Value2")]
public Task InlineDataUsage(string arg) =>
Verify(arg);
#endregion
#region UseParametersXunitV3
[Theory]
[InlineData("Value1")]
[InlineData("Value2")]
public Task UseParametersUsage(string arg)
{
var somethingToVerify = $"{arg} some text";
return Verify(somethingToVerify)
.UseParameters(arg);
}
#endregion
#region UseParametersSubSetXunitV3
[Theory]
[InlineData("Value1", "Value2", "Value3")]
public Task UseParametersSubSet(string arg1, string arg2, string arg3)
{
var somethingToVerify = $"{arg1} {arg2} {arg3} some text";
return Verify(somethingToVerify)
.UseParameters(arg1, arg2);
}
#endregion
#region MemberDataXunitV3
[Theory]
[MemberData(nameof(GetData))]
public Task MemberDataUsage(string arg) =>
Verify(arg);
public static IEnumerable<object[]> GetData()
{
yield return
[
"Value1"
];
yield return
[
"Value2"
];
}
#endregion
}