@@ -107,7 +107,8 @@ public void Execute_should_call_channel_Command_with_unwrapped_command_when_wrap
107107 null , // postWriteAction
108108 CommandResponseHandling . Return ,
109109 subject . ResultSerializer ,
110- subject . MessageEncoderSettings ) ,
110+ subject . MessageEncoderSettings ,
111+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
111112 Times . Once ) ;
112113 }
113114 else
@@ -125,7 +126,8 @@ public void Execute_should_call_channel_Command_with_unwrapped_command_when_wrap
125126 null , // postWriteAction
126127 CommandResponseHandling . Return ,
127128 subject . ResultSerializer ,
128- subject . MessageEncoderSettings ) ,
129+ subject . MessageEncoderSettings ,
130+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
129131 Times . Once ) ;
130132 }
131133 }
@@ -161,7 +163,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_additi
161163 null , // postWriteAction
162164 CommandResponseHandling . Return ,
163165 subject . ResultSerializer ,
164- subject . MessageEncoderSettings ) ,
166+ subject . MessageEncoderSettings ,
167+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
165168 Times . Once ) ;
166169 }
167170 else
@@ -179,7 +182,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_additi
179182 null , // postWriteAction
180183 CommandResponseHandling . Return ,
181184 subject . ResultSerializer ,
182- subject . MessageEncoderSettings ) ,
185+ subject . MessageEncoderSettings ,
186+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
183187 Times . Once ) ;
184188 }
185189 }
@@ -214,7 +218,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_commen
214218 null , // postWriteAction
215219 CommandResponseHandling . Return ,
216220 subject . ResultSerializer ,
217- subject . MessageEncoderSettings ) ,
221+ subject . MessageEncoderSettings ,
222+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
218223 Times . Once ) ;
219224 }
220225 else
@@ -232,7 +237,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_commen
232237 null , // postWriteAction
233238 CommandResponseHandling . Return ,
234239 subject . ResultSerializer ,
235- subject . MessageEncoderSettings ) ,
240+ subject . MessageEncoderSettings ,
241+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
236242 Times . Once ) ;
237243 }
238244 }
@@ -268,7 +274,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_readPr
268274 null , // postWriteAction
269275 CommandResponseHandling . Return ,
270276 subject . ResultSerializer ,
271- subject . MessageEncoderSettings ) ,
277+ subject . MessageEncoderSettings ,
278+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
272279 Times . Once ) ;
273280 }
274281 else
@@ -286,7 +293,8 @@ public void Execute_should_call_channel_Command_with_wrapped_command_when_readPr
286293 null , // postWriteAction
287294 CommandResponseHandling . Return ,
288295 subject . ResultSerializer ,
289- subject . MessageEncoderSettings ) ,
296+ subject . MessageEncoderSettings ,
297+ It . IsAny < IBsonSerializationDomain > ( ) ) ,
290298 Times . Once ) ;
291299 }
292300 }
0 commit comments