forked from VerifyTests/Verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParametersSample.cs
92 lines (73 loc) · 2.25 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
[TestFixture]
public class ParametersSample
{
[TestCase("1.1")]
public Task Decimal(decimal arg) =>
Verify(arg);
[TestCase((float) 1.1)]
public Task Float(float arg) =>
Verify(arg);
[TestCase(1.1d)]
public Task Double(double arg) =>
Verify(arg);
#region IgnoreParametersForVerifiedNunit
[TestCase("One")]
[TestCase("Two")]
public Task IgnoreParametersForVerified(string arg)
{
var settings = new VerifySettings();
settings.IgnoreParametersForVerified();
return Verify("value", settings);
}
#endregion
#region IgnoreParametersForVerifiedFluentNunit
[TestCase("One")]
[TestCase("Two")]
public Task IgnoreParametersForVerifiedFluent(string arg) =>
Verify("value")
.IgnoreParametersForVerified();
#endregion
#region IgnoreParametersForVerifiedCustomParamsNunit
[TestCase("One")]
[TestCase("Two")]
public Task IgnoreParametersForVerifiedCustomParams(string arg)
{
var settings = new VerifySettings();
settings.IgnoreParametersForVerified($"Number{arg}");
return Verify("value", settings);
}
#endregion
#region IgnoreParametersForVerifiedCustomParamsFluentNunit
[TestCase("One")]
[TestCase("Two")]
public Task IgnoreParametersForVerifiedCustomParamsFluent(string arg) =>
Verify("value")
.IgnoreParametersForVerified($"Number{arg}");
#endregion
#region NUnitTestCase
[TestCase("Value1")]
[TestCase("Value2")]
public Task TestCaseUsage(string arg) =>
Verify(arg);
#endregion
[TestCase("Value2")]
public Task SuppliedDoesNotMatchArg(string arg) =>
Verify("Foo")
.UseParameters("notTheArg");
// #region nunitAutoFixture
//
// [Theory]
// [InlineAutoData(42)]
// public Task AutoFixtureUsage(int stable, string random1, string random2)
// {
// var result = MethodBeingTested(stable, random1, random2);
// return Verify(result)
// .UseParameters(stable);
// }
//
// #endregion
//
// // ReSharper disable UnusedParameter.Local
// static int MethodBeingTested(int stable, string random1, string random2) =>
// stable;
}