Esempio n. 1
0
 public void Should_invoke_per_argument_actions_specified_on_matching_specifications()
 {
     _firstMatchingCallSpec.received(x => x.InvokePerArgumentActions(_callInfo));
     _secondMatchingCallSpec.received(x => x.InvokePerArgumentActions(_callInfo));
     _nonMatchingCallSpec.did_not_receive(x => x.InvokePerArgumentActions(_callInfo));
 }