-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path6_VerifyMethods.cs
executable file
·228 lines (190 loc) · 5.42 KB
/
6_VerifyMethods.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using MoqKoans.KoansHelpers;
namespace MoqKoans
{
[TestClass]
public class Moq6_VerifyMethods : Koan
{
// This is an interface that we will be mocking.
public interface IVolume
{
int Louder(int amount);
int Quieter(int amount);
string CurrentVolume();
}
[TestMethod]
public void MethodsSetUpWithVerifiableCanBeCheckedToSeeIfTheyWereCalled()
{
var mock = new Mock<IVolume>();
mock.Setup(x => x.Louder(It.IsAny<int>()))
.Returns(0)
.Verifiable();
var exceptionWasThrown = false;
try
{
mock.Verify(); // the call to Verify tells Moq to ensure that all .Verifiable() setup methods have been called.
}
catch (Exception)
{
exceptionWasThrown = true;
}
Assert.AreEqual(___, exceptionWasThrown);
}
[TestMethod]
public void ACustomErrorMessageCanBeSpecifiedInVerifiable()
{
var mock = new Mock<IVolume>();
mock.Setup(x => x.Louder(It.IsAny<int>()))
.Returns(0)
.Verifiable("This message will be in the Exception if the method is not called.");
var exceptionWasThrown = false;
try
{
mock.Verify();
}
catch (Exception ex)
{
exceptionWasThrown = true;
Assert.IsTrue(ex.Message.Contains("___"));
}
Assert.AreEqual(___, exceptionWasThrown);
}
[TestMethod]
public void IfAMethodIsSetupVerifiableButVerifyIsNotCalledLaterThenNoExceptionIsThrown()
{
bool wasExceptionThrown = false;
try
{
var mock = new Mock<IVolume>();
mock.Setup(x => x.Louder(It.IsAny<int>()))
.Returns(0)
.Verifiable("Louder was not called.");
//mock.Object.Louder(0); <-- intentionally NOT calling .Louder(). Don't uncomment this.
//mock.Verify(); <-- intentionally NOT calling .Verify(). Don't uncomment this.
}
catch (MockException)
{
wasExceptionThrown = true;
}
// Since the method is setup with .Verifiable(), and we did not call .Louder(), is an Exception thrown?
// Why or Why Not?
Assert.AreEqual(___, wasExceptionThrown);
}
[TestMethod]
public void VerifyChecksAllMethodsThatAreVerifiable_AllMustHaveBeenCalled()
{
var mock = new Mock<IVolume>();
mock.Setup(x => x.Louder(It.IsAny<int>()))
.Returns(0)
.Verifiable("I can barely hear that thing. Crank it up!");
mock.Setup(x => x.Quieter(It.IsAny<int>()))
.Returns(0)
.Verifiable("Its too loud in here. Turn it down!");
var volume = mock.Object;
volume.Quieter(100);
volume.____();
mock.Verify();
}
[TestMethod]
public void VerifiablePassesAsLongAsMethodIsCalledOneOrMoreTimes()
{
var mock = new Mock<IVolume>();
mock.Setup(x => x.CurrentVolume()).Verifiable();
var volume = mock.Object;
volume.CurrentVolume();
volume.CurrentVolume();
volume.CurrentVolume();
volume.CurrentVolume();
var wasAnExceptionThrown = false;
try
{
mock.Verify();
}
catch (Exception)
{
wasAnExceptionThrown = true;
}
Assert.AreEqual(___, wasAnExceptionThrown);
}
[TestMethod]
public void MethodCallsCanAlsoBeVerifiedWithTheVerifyMethodInsteadOfInSetup()
{
var mock = new Mock<IVolume>();
var wasAnExceptionThrown = false;
try
{
// the syntax for .Verify() is the same as .Setup() in that it is given a Lambda expression
// that indicates what method and parameters to verify.
mock.Verify(x => x.CurrentVolume());
}
catch (Exception)
{
wasAnExceptionThrown = true;
}
Assert.AreEqual(___, wasAnExceptionThrown);
}
[TestMethod]
public void VerifyCanFilterByInputParameters()
{
var mock = new Mock<IVolume>();
mock.Object.Louder(20);
var wasAnExceptionThrown = false;
try
{
mock.Verify(x => x.Louder(10));
}
catch (Exception)
{
wasAnExceptionThrown = true;
}
Assert.AreEqual(___, wasAnExceptionThrown);
}
[TestMethod]
public void VerifyCanBeUsedMoreThanOnceOnTheSameMethodWithDifferentConditions()
{
var mock = new Mock<IVolume>();
var volume = mock.Object;
volume.____();
volume.____();
mock.Verify(x => x.Quieter(10), "Quieter should have been called with the value 10.");
mock.Verify(x => x.Quieter(It.Is<int>(p => p > 20 && p < 30)), "Quieter should have been called with a value between 20 and 30.");
}
[TestMethod]
public void VerifyTimesCanBeUsedToEnsureAMethodIsCalledAnExactNumberOfTimes()
{
var mock = new Mock<IVolume>();
var volume = mock.Object;
volume.CurrentVolume();
volume.CurrentVolume();
var wasAnExceptionThrown = false;
try
{
mock.Verify(x => x.CurrentVolume(), Times.Once());
}
catch (Exception)
{
wasAnExceptionThrown = true;
}
Assert.AreEqual(___, wasAnExceptionThrown);
}
[TestMethod]
public void VerifyCurrentVolumeWasCalledExactlyThreeTimes()
{
var mock = new Mock<IVolume>();
var volume = mock.Object;
volume.____();
mock.Verify(x => x.CurrentVolume(), Times.Exactly(3));
}
[TestMethod]
public void SetupAndVerifyCanBeUsedTogether()
{
var mock = new Mock<IVolume>();
var volume = mock.Object;
mock.Setup(x => x.Louder(It.IsAny<int>())).Returns<int>(p => p);
Assert.AreEqual(___, volume.Louder(22));
mock.Verify(x => x.Louder(____), Times.AtLeastOnce());
}
}
}