是否可以使用Rhino Mocks來模擬WindowsImpersonationContext?Rhino Mocks嘲笑WindowsImpersonationContext
我得到:
system.missingMethodException而:無法找到匹配的參數的構造函數 ----> system.missingMethodException而:在類的構造 'WindowsImpersonationContextProxy04bee852de914d5b8a47d6776edc4cb3'
var windowsImpersonationContext = mockRepository.Stub<WindowsImpersonationContext>();
mockImpersonation.Stub(x => x.ImpersonateUser("username", "domain", "password")).Return(windowsImpersonationContext);
這裏是我的代碼我需要模擬
public interface IImpersonation
{
WindowsImpersonationContext ImpersonateUser(string sUsername, string sDomain, string sPassword);
}
PFF,該代碼只有3行,並且您的變量名拼寫錯誤。可能犀牛是不高興的。好的,我嘲笑你的代碼。 – rook 2010-07-26 16:09:36
非常有趣....! – Coppermill 2010-07-27 10:46:26