Esempio n. 1
0
 private void ExpectCallToSend <T>(BusSendWithDestinationAndCorrelationIdDelegate callback)
 {
     Expect.Call(() => bus.Send(Arg <string> .Is.NotNull, Arg <string> .Is.NotNull, Arg <T> .Is.Anything))
     .IgnoreArguments().Return(null)
     .Callback(callback);
 }