我在使用 Rhino Mocks 进行部分模拟时遇到问题:
var authentication = (FormsAuthenticationService)_mocks.PartialMock(
typeof(FormsAuthenticationService));
Expect.Call( delegate{ authentication.SetAuthCookie(null, null); }).IgnoreArguments();
..我在“期望”上得到 NullReferenceException。线..
我将添加该FormsAuthenticationService
工具IAuthentication