我有靜態類的靜態方法,注入我的依賴關係:如何讓Ninject內核返回NSubstitute模擬對象?
public static void InjectDependency(NinjectModule module);
我有靜態屬性來獲取每個對象的實例:
public static IKernel AppKernel {get;set;}
如果我想創建一個實例,根據我injeced NinjectModule
派生類中,我使用下面的代碼:
IInterface instance = MyStaticClass.AppKernel.Get<IInterface>();
但現在我想我的內核返回模擬Ø bject,用NSubstitute創建。怎麼可以做到這一點?
你可以提供一個小例子,好嗎? – klutch1991