例外を代用したいのですが、それはフィールドです。
そんな感じ:
var webExcetion = Substitute.For<WebException>();
webExcetion.Response.Returns(httpWebResponse);
substituteForHttp.GetResponse(Arg.Any<string>()).Returns(x => { throw webExcetion; });
このコードは、NSubstitute によって Castle.Proxies.ExceptionProxy または NSubstitute.Exceptions.CouldNotSetReturnException をスローします。
どうやってやるの?