丰富与不运行
本文关键字:运行 | 更新日期: 2023-09-27 18:35:14
我正在尝试获得一个非常简单的装饰器模式版本,但我无法让它工作。这是我的代码(注意断点):
public interface ITestClass { void DoSomething(); }
public class TestClass : ITestClass
{
public void DoSomething()
{
Console.WriteLine("Doing something"); //Breakpoint
}
}
public class LoggingTestClass : ITestClass
{
private ITestClass originalClass;
public LoggingTestClass(ITestClass original)
{
originalClass = original; //Breakpoint
}
public void DoSomething()
{
Console.WriteLine("Log start");
originalClass.DoSomething();
Console.WriteLine("Log finish");
}
}
在我的注册表中:
For<ITestClass>().Use<TestClass>().
EnrichWith(original => new LoggingTestClass(original));
最后是一个测试:
[TestMethod]
public void DoSomeTesting()
{
using (IContainer container = new Container(new ApiRegistry()))
{
ITestClass testClass = container.GetInstance<TestClass>(); //Breakpoint
testClass.DoSomething();
}
}
当我调试测试时,我首先在测试中命中断点,然后在 DoSomething() 方法中命中断点。LoggingTestClass 的构造函数永远不会被执行。
我不确定如何进一步简化它,似乎 EnrichWith 根本没有被称为......
啊,看来我非常愚蠢!我使用的是GetInstance<TestClass>
而不是GetInstance<ITestClass>
.那一点点我已经让我忙碌了几个小时!去你的商人。