我正在尝试使用 StructureMap 运行一个非常简单的装饰器模式版本,但我无法让它工作。这是我的代码(注意断点):
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 ...