いくつかの方法をテストするために、モッキングに続いて提案されました。このモックを5のように複数回実行する必要があります。ラムダ式で実行できるのか、それともループする必要があるのでしょうか。ありがとう
//when you know the parameter values to expect
mockEmailRequest.Verify(r=>r.EmailRecevied(expectedEmail, expectedId));
//when you just want to verify some detail about the values
mockEmailRequest.Verify(r=>r.EmailRecevied(It.Is<EmailResponse>(r=>r.Subject == "Something"), It.Is<int>(i=>i > 17)));