ServerDelays.java

1
package fr.sii.ogham.testing.sms.simulator.config;
2
3
/**
4
 * Control delays to simulate a slow server.
5
 * 
6
 * @author Aurélien Baudet
7
 *
8
 */
9
public class ServerDelays {
10
	/**
11
	 * Simulate slow server by executing {@code sendAlertNotificationWaiting}
12
	 * function before sending "AlertNotification" data
13
	 */
14
	private Awaiter sendAlertNotificationWaiting;
15
	/**
16
	 * Simulate slow server by executing {@code sendBindWaiting} function before
17
	 * sending "Bind" data
18
	 */
19
	private Awaiter sendBindWaiting;
20
	/**
21
	 * Simulate slow server by executing {@code sendBindRespWaiting} function
22
	 * before sending "BindResp" data
23
	 */
24
	private Awaiter sendBindRespWaiting;
25
	/**
26
	 * Simulate slow server by executing {@code sendCancelSmWaiting} function
27
	 * before sending "CancelSm" data
28
	 */
29
	private Awaiter sendCancelSmWaiting;
30
	/**
31
	 * Simulate slow server by executing {@code sendCancelSmRespWaiting}
32
	 * function before sending "CancelSmResp" data
33
	 */
34
	private Awaiter sendCancelSmRespWaiting;
35
	/**
36
	 * Simulate slow server by executing {@code sendDataSmWaiting} function
37
	 * before sending "DataSm" data
38
	 */
39
	private Awaiter sendDataSmWaiting;
40
	/**
41
	 * Simulate slow server by executing {@code sendDataSmRespWaiting} function
42
	 * before sending "DataSmResp" data
43
	 */
44
	private Awaiter sendDataSmRespWaiting;
45
	/**
46
	 * Simulate slow server by executing {@code sendDeliverSmWaiting} function
47
	 * before sending "DeliverSm" data
48
	 */
49
	private Awaiter sendDeliverSmWaiting;
50
	/**
51
	 * Simulate slow server by executing {@code sendDeliverSmRespWaiting}
52
	 * function before sending "DeliverSmResp" data
53
	 */
54
	private Awaiter sendDeliverSmRespWaiting;
55
	/**
56
	 * Simulate slow server by executing {@code sendEnquireLinkWaiting} function
57
	 * before sending "EnquireLink" data
58
	 */
59
	private Awaiter sendEnquireLinkWaiting;
60
	/**
61
	 * Simulate slow server by executing {@code sendEnquireLinkRespWaiting}
62
	 * function before sending "EnquireLinkResp" data
63
	 */
64
	private Awaiter sendEnquireLinkRespWaiting;
65
	/**
66
	 * Simulate slow server by executing {@code sendGenericNackWaiting} function
67
	 * before sending "GenericNack" data
68
	 */
69
	private Awaiter sendGenericNackWaiting;
70
	/**
71
	 * Simulate slow server by executing {@code sendHeaderWaiting} function
72
	 * before sending "Header" data
73
	 */
74
	private Awaiter sendHeaderWaiting;
75
	/**
76
	 * Simulate slow server by executing {@code sendOutbindWaiting} function
77
	 * before sending "Outbind" data
78
	 */
79
	private Awaiter sendOutbindWaiting;
80
	/**
81
	 * Simulate slow server by executing {@code sendQuerySmWaiting} function
82
	 * before sending "QuerySm" data
83
	 */
84
	private Awaiter sendQuerySmWaiting;
85
	/**
86
	 * Simulate slow server by executing {@code sendQuerySmRespWaiting} function
87
	 * before sending "QuerySmResp" data
88
	 */
89
	private Awaiter sendQuerySmRespWaiting;
90
	/**
91
	 * Simulate slow server by executing {@code sendReplaceSmWaiting} function
92
	 * before sending "ReplaceSm" data
93
	 */
94
	private Awaiter sendReplaceSmWaiting;
95
	/**
96
	 * Simulate slow server by executing {@code sendReplaceSmRespWaiting}
97
	 * function before sending "ReplaceSmResp" data
98
	 */
99
	private Awaiter sendReplaceSmRespWaiting;
100
	/**
101
	 * Simulate slow server by executing {@code sendSubmitMultiWaiting} function
102
	 * before sending "SubmitMulti" data
103
	 */
104
	private Awaiter sendSubmitMultiWaiting;
105
	/**
106
	 * Simulate slow server by executing {@code sendSubmitMultiRespWaiting}
107
	 * function before sending "SubmitMultiResp" data
108
	 */
109
	private Awaiter sendSubmitMultiRespWaiting;
110
	/**
111
	 * Simulate slow server by executing {@code sendSubmitSmWaiting} function
112
	 * before sending "SubmitSm" data
113
	 */
114
	private Awaiter sendSubmitSmWaiting;
115
	/**
116
	 * Simulate slow server by executing {@code sendSubmitSmRespWaiting}
117
	 * function before sending "SubmitSmResp" data
118
	 */
119
	private Awaiter sendSubmitSmRespWaiting;
120
	/**
121
	 * Simulate slow server by executing {@code sendUnbindWaiting} function
122
	 * before sending "Unbind" data
123
	 */
124
	private Awaiter sendUnbindWaiting;
125
	/**
126
	 * Simulate slow server by executing {@code sendUnbindRespWaiting} function
127
	 * before sending "UnbindResp" data
128
	 */
129
	private Awaiter sendUnbindRespWaiting;
130
131
	public Awaiter getSendAlertNotificationWaiting() {
132 1 1. getSendAlertNotificationWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendAlertNotificationWaiting → NO_COVERAGE
		return sendAlertNotificationWaiting;
133
	}
134
135
	public void setSendAlertNotificationWaiting(Awaiter sendAlertNotificationWaiting) {
136
		this.sendAlertNotificationWaiting = sendAlertNotificationWaiting;
137
	}
138
139
	public Awaiter getSendBindWaiting() {
140 1 1. getSendBindWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindWaiting → NO_COVERAGE
		return sendBindWaiting;
141
	}
142
143
	public void setSendBindWaiting(Awaiter sendBindWaiting) {
144
		this.sendBindWaiting = sendBindWaiting;
145
	}
146
147
	public Awaiter getSendBindRespWaiting() {
148 3 1. getSendBindRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → NO_COVERAGE
2. getSendBindRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → KILLED
3. getSendBindRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → KILLED
		return sendBindRespWaiting;
149
	}
150
151
	public void setSendBindRespWaiting(Awaiter sendBindRespWaiting) {
152
		this.sendBindRespWaiting = sendBindRespWaiting;
153
	}
154
155
	public Awaiter getSendCancelSmWaiting() {
156 1 1. getSendCancelSmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendCancelSmWaiting → NO_COVERAGE
		return sendCancelSmWaiting;
157
	}
158
159
	public void setSendCancelSmWaiting(Awaiter sendCancelSmWaiting) {
160
		this.sendCancelSmWaiting = sendCancelSmWaiting;
161
	}
162
163
	public Awaiter getSendCancelSmRespWaiting() {
164 1 1. getSendCancelSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendCancelSmRespWaiting → NO_COVERAGE
		return sendCancelSmRespWaiting;
165
	}
166
167
	public void setSendCancelSmRespWaiting(Awaiter sendCancelSmRespWaiting) {
168
		this.sendCancelSmRespWaiting = sendCancelSmRespWaiting;
169
	}
170
171
	public Awaiter getSendDataSmWaiting() {
172 1 1. getSendDataSmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDataSmWaiting → NO_COVERAGE
		return sendDataSmWaiting;
173
	}
174
175
	public void setSendDataSmWaiting(Awaiter sendDataSmWaiting) {
176
		this.sendDataSmWaiting = sendDataSmWaiting;
177
	}
178
179
	public Awaiter getSendDataSmRespWaiting() {
180 1 1. getSendDataSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDataSmRespWaiting → NO_COVERAGE
		return sendDataSmRespWaiting;
181
	}
182
183
	public void setSendDataSmRespWaiting(Awaiter sendDataSmRespWaiting) {
184
		this.sendDataSmRespWaiting = sendDataSmRespWaiting;
185
	}
186
187
	public Awaiter getSendDeliverSmWaiting() {
188 1 1. getSendDeliverSmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDeliverSmWaiting → NO_COVERAGE
		return sendDeliverSmWaiting;
189
	}
190
191
	public void setSendDeliverSmWaiting(Awaiter sendDeliverSmWaiting) {
192
		this.sendDeliverSmWaiting = sendDeliverSmWaiting;
193
	}
194
195
	public Awaiter getSendDeliverSmRespWaiting() {
196 1 1. getSendDeliverSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDeliverSmRespWaiting → NO_COVERAGE
		return sendDeliverSmRespWaiting;
197
	}
198
199
	public void setSendDeliverSmRespWaiting(Awaiter sendDeliverSmRespWaiting) {
200
		this.sendDeliverSmRespWaiting = sendDeliverSmRespWaiting;
201
	}
202
203
	public Awaiter getSendEnquireLinkWaiting() {
204 1 1. getSendEnquireLinkWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkWaiting → NO_COVERAGE
		return sendEnquireLinkWaiting;
205
	}
206
207
	public void setSendEnquireLinkWaiting(Awaiter sendEnquireLinkWaiting) {
208
		this.sendEnquireLinkWaiting = sendEnquireLinkWaiting;
209
	}
210
211
	public Awaiter getSendEnquireLinkRespWaiting() {
212 2 1. getSendEnquireLinkRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkRespWaiting → NO_COVERAGE
2. getSendEnquireLinkRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkRespWaiting → KILLED
		return sendEnquireLinkRespWaiting;
213
	}
214
215
	public void setSendEnquireLinkRespWaiting(Awaiter sendEnquireLinkRespWaiting) {
216
		this.sendEnquireLinkRespWaiting = sendEnquireLinkRespWaiting;
217
	}
218
219
	public Awaiter getSendGenericNackWaiting() {
220 1 1. getSendGenericNackWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendGenericNackWaiting → NO_COVERAGE
		return sendGenericNackWaiting;
221
	}
222
223
	public void setSendGenericNackWaiting(Awaiter sendGenericNackWaiting) {
224
		this.sendGenericNackWaiting = sendGenericNackWaiting;
225
	}
226
227
	public Awaiter getSendHeaderWaiting() {
228 1 1. getSendHeaderWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendHeaderWaiting → NO_COVERAGE
		return sendHeaderWaiting;
229
	}
230
231
	public void setSendHeaderWaiting(Awaiter sendHeaderWaiting) {
232
		this.sendHeaderWaiting = sendHeaderWaiting;
233
	}
234
235
	public Awaiter getSendOutbindWaiting() {
236 1 1. getSendOutbindWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendOutbindWaiting → NO_COVERAGE
		return sendOutbindWaiting;
237
	}
238
239
	public void setSendOutbindWaiting(Awaiter sendOutbindWaiting) {
240
		this.sendOutbindWaiting = sendOutbindWaiting;
241
	}
242
243
	public Awaiter getSendQuerySmWaiting() {
244 1 1. getSendQuerySmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendQuerySmWaiting → NO_COVERAGE
		return sendQuerySmWaiting;
245
	}
246
247
	public void setSendQuerySmWaiting(Awaiter sendQuerySmWaiting) {
248
		this.sendQuerySmWaiting = sendQuerySmWaiting;
249
	}
250
251
	public Awaiter getSendQuerySmRespWaiting() {
252 1 1. getSendQuerySmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendQuerySmRespWaiting → NO_COVERAGE
		return sendQuerySmRespWaiting;
253
	}
254
255
	public void setSendQuerySmRespWaiting(Awaiter sendQuerySmRespWaiting) {
256
		this.sendQuerySmRespWaiting = sendQuerySmRespWaiting;
257
	}
258
259
	public Awaiter getSendReplaceSmWaiting() {
260 1 1. getSendReplaceSmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendReplaceSmWaiting → NO_COVERAGE
		return sendReplaceSmWaiting;
261
	}
262
263
	public void setSendReplaceSmWaiting(Awaiter sendReplaceSmWaiting) {
264
		this.sendReplaceSmWaiting = sendReplaceSmWaiting;
265
	}
266
267
	public Awaiter getSendReplaceSmRespWaiting() {
268 1 1. getSendReplaceSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendReplaceSmRespWaiting → NO_COVERAGE
		return sendReplaceSmRespWaiting;
269
	}
270
271
	public void setSendReplaceSmRespWaiting(Awaiter sendReplaceSmRespWaiting) {
272
		this.sendReplaceSmRespWaiting = sendReplaceSmRespWaiting;
273
	}
274
275
	public Awaiter getSendSubmitMultiWaiting() {
276 1 1. getSendSubmitMultiWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitMultiWaiting → NO_COVERAGE
		return sendSubmitMultiWaiting;
277
	}
278
279
	public void setSendSubmitMultiWaiting(Awaiter sendSubmitMultiWaiting) {
280
		this.sendSubmitMultiWaiting = sendSubmitMultiWaiting;
281
	}
282
283
	public Awaiter getSendSubmitMultiRespWaiting() {
284 1 1. getSendSubmitMultiRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitMultiRespWaiting → NO_COVERAGE
		return sendSubmitMultiRespWaiting;
285
	}
286
287
	public void setSendSubmitMultiRespWaiting(Awaiter sendSubmitMultiRespWaiting) {
288
		this.sendSubmitMultiRespWaiting = sendSubmitMultiRespWaiting;
289
	}
290
291
	public Awaiter getSendSubmitSmWaiting() {
292 1 1. getSendSubmitSmWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmWaiting → NO_COVERAGE
		return sendSubmitSmWaiting;
293
	}
294
295
	public void setSendSubmitSmWaiting(Awaiter sendSubmitSmWaiting) {
296
		this.sendSubmitSmWaiting = sendSubmitSmWaiting;
297
	}
298
299
	public Awaiter getSendSubmitSmRespWaiting() {
300 3 1. getSendSubmitSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → NO_COVERAGE
2. getSendSubmitSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → KILLED
3. getSendSubmitSmRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → KILLED
		return sendSubmitSmRespWaiting;
301
	}
302
303
	public void setSendSubmitSmRespWaiting(Awaiter sendSubmitSmRespWaiting) {
304
		this.sendSubmitSmRespWaiting = sendSubmitSmRespWaiting;
305
	}
306
307
	public Awaiter getSendUnbindWaiting() {
308 1 1. getSendUnbindWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindWaiting → NO_COVERAGE
		return sendUnbindWaiting;
309
	}
310
311
	public void setSendUnbindWaiting(Awaiter sendUnbindWaiting) {
312
		this.sendUnbindWaiting = sendUnbindWaiting;
313
	}
314
315
	public Awaiter getSendUnbindRespWaiting() {
316 2 1. getSendUnbindRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindRespWaiting → NO_COVERAGE
2. getSendUnbindRespWaiting : replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindRespWaiting → SURVIVED
		return sendUnbindRespWaiting;
317
	}
318
319
	public void setSendUnbindRespWaiting(Awaiter sendUnbindRespWaiting) {
320
		this.sendUnbindRespWaiting = sendUnbindRespWaiting;
321
	}
322
323
}

Mutations

132

1.1
Location : getSendAlertNotificationWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendAlertNotificationWaiting → NO_COVERAGE

140

1.1
Location : getSendBindWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindWaiting → NO_COVERAGE

148

1.1
Location : getSendBindRespWaiting
Killed by : oghamcloudhopper.it.SendTimeoutTest.connectionTimeoutPerExecutionRetry(oghamcloudhopper.it.SendTimeoutTest)
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → KILLED

2.2
Location : getSendBindRespWaiting
Killed by : oghamtesting.it.sms.simulator.JsmppSimulatorSpec
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → KILLED

3.3
Location : getSendBindRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendBindRespWaiting → NO_COVERAGE

156

1.1
Location : getSendCancelSmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendCancelSmWaiting → NO_COVERAGE

164

1.1
Location : getSendCancelSmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendCancelSmRespWaiting → NO_COVERAGE

172

1.1
Location : getSendDataSmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDataSmWaiting → NO_COVERAGE

180

1.1
Location : getSendDataSmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDataSmRespWaiting → NO_COVERAGE

188

1.1
Location : getSendDeliverSmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDeliverSmWaiting → NO_COVERAGE

196

1.1
Location : getSendDeliverSmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendDeliverSmRespWaiting → NO_COVERAGE

204

1.1
Location : getSendEnquireLinkWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkWaiting → NO_COVERAGE

212

1.1
Location : getSendEnquireLinkRespWaiting
Killed by : oghamcloudhopper.it.ReuseSessionStrategyTest.reuseSessionButEnquireLinkTimeout(oghamcloudhopper.it.ReuseSessionStrategyTest)
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkRespWaiting → KILLED

2.2
Location : getSendEnquireLinkRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendEnquireLinkRespWaiting → NO_COVERAGE

220

1.1
Location : getSendGenericNackWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendGenericNackWaiting → NO_COVERAGE

228

1.1
Location : getSendHeaderWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendHeaderWaiting → NO_COVERAGE

236

1.1
Location : getSendOutbindWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendOutbindWaiting → NO_COVERAGE

244

1.1
Location : getSendQuerySmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendQuerySmWaiting → NO_COVERAGE

252

1.1
Location : getSendQuerySmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendQuerySmRespWaiting → NO_COVERAGE

260

1.1
Location : getSendReplaceSmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendReplaceSmWaiting → NO_COVERAGE

268

1.1
Location : getSendReplaceSmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendReplaceSmRespWaiting → NO_COVERAGE

276

1.1
Location : getSendSubmitMultiWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitMultiWaiting → NO_COVERAGE

284

1.1
Location : getSendSubmitMultiRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitMultiRespWaiting → NO_COVERAGE

292

1.1
Location : getSendSubmitSmWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmWaiting → NO_COVERAGE

300

1.1
Location : getSendSubmitSmRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → NO_COVERAGE

2.2
Location : getSendSubmitSmRespWaiting
Killed by : oghamtesting.it.sms.simulator.JsmppSimulatorSpec
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → KILLED

3.3
Location : getSendSubmitSmRespWaiting
Killed by : oghamcloudhopper.it.SendTimeoutTest.sendResponseTimeout(oghamcloudhopper.it.SendTimeoutTest)
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendSubmitSmRespWaiting → KILLED

308

1.1
Location : getSendUnbindWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindWaiting → NO_COVERAGE

316

1.1
Location : getSendUnbindRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindRespWaiting → NO_COVERAGE

2.2
Location : getSendUnbindRespWaiting
Killed by : none
replaced return value with null for fr/sii/ogham/testing/sms/simulator/config/ServerDelays::getSendUnbindRespWaiting → SURVIVED

Active mutators

Tests examined


Report generated by PIT OGHAM