@@ -107,7 +107,8 @@ public void Execute_should_call_channel_Command_with_unwrapped_command_when_wrap
107
107
null , // postWriteAction
108
108
CommandResponseHandling . Return ,
109
109
subject . ResultSerializer ,
110
- subject . MessageEncoderSettings ) ,
110
+ subject . MessageEncoderSettings ,
111
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
111
112
Times . Once ) ;
112
113
}
113
114
else
@@ -125,7 +126,8 @@ public void Execute_should_call_channel_Command_with_unwrapped_command_when_wrap
125
126
null , // postWriteAction
126
127
CommandResponseHandling . Return ,
127
128
subject . ResultSerializer ,
128
- subject . MessageEncoderSettings ) ,
129
+ subject . MessageEncoderSettings ,
130
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
129
131
Times . Once ) ;
130
132
}
131
133
}
@@ -161,7 +163,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_additi
161
163
null , // postWriteAction
162
164
CommandResponseHandling . Return ,
163
165
subject . ResultSerializer ,
164
- subject . MessageEncoderSettings ) ,
166
+ subject . MessageEncoderSettings ,
167
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
165
168
Times . Once ) ;
166
169
}
167
170
else
@@ -179,7 +182,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_additi
179
182
null , // postWriteAction
180
183
CommandResponseHandling . Return ,
181
184
subject . ResultSerializer ,
182
- subject . MessageEncoderSettings ) ,
185
+ subject . MessageEncoderSettings ,
186
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
183
187
Times . Once ) ;
184
188
}
185
189
}
@@ -214,7 +218,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_commen
214
218
null , // postWriteAction
215
219
CommandResponseHandling . Return ,
216
220
subject . ResultSerializer ,
217
- subject . MessageEncoderSettings ) ,
221
+ subject . MessageEncoderSettings ,
222
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
218
223
Times . Once ) ;
219
224
}
220
225
else
@@ -232,7 +237,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_commen
232
237
null , // postWriteAction
233
238
CommandResponseHandling . Return ,
234
239
subject . ResultSerializer ,
235
- subject . MessageEncoderSettings ) ,
240
+ subject . MessageEncoderSettings ,
241
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
236
242
Times . Once ) ;
237
243
}
238
244
}
@@ -268,7 +274,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_readPr
268
274
null , // postWriteAction
269
275
CommandResponseHandling . Return ,
270
276
subject . ResultSerializer ,
271
- subject . MessageEncoderSettings ) ,
277
+ subject . MessageEncoderSettings ,
278
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
272
279
Times . Once ) ;
273
280
}
274
281
else
@@ -286,7 +293,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_readPr
286
293
null , // postWriteAction
287
294
CommandResponseHandling . Return ,
288
295
subject . ResultSerializer ,
289
- subject . MessageEncoderSettings ) ,
296
+ subject . MessageEncoderSettings ,
297
+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
290
298
Times . Once ) ;
291
299
}
292
300
}
0 commit comments