最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - What is the correct implementation for unit testing a WPF application using dependency injection? - Stack Overflow

programmeradmin1浏览0评论

I have a singleton model class (Project) shared application-wide through dependency injection. Works great in the application. I have another model class (Analysis) that accesses this singleton that I am trying to unit test. But because of the DI, I am struggling to unit test this.

My current code looks like:

public partial class App : Application
{
    public IHost AppHost;

    /// <summary>
    /// Default constructor
    /// </summary>
    public App()
    {
        AppHost = Host.CreateDefaultBuilder()
            .ConfigureServices(services =>
            {
                services.AddSingleton<IProject, Project>();
            })
            .Build();
...
    }
}
public partial class Analysis
{
    public void AnalysisMethod()
    {
        IProject project = ((App)Application.Current).AppHost.Services
            .GetRequiredService<IProject>();
    }
}

I'm trying to unit test AnalysisMethod but of course it fails because there is no Application.Current. How should I be coding/testing this, keeping in mind that I'd like to keep a singleton IProject created by DI?

I have a singleton model class (Project) shared application-wide through dependency injection. Works great in the application. I have another model class (Analysis) that accesses this singleton that I am trying to unit test. But because of the DI, I am struggling to unit test this.

My current code looks like:

public partial class App : Application
{
    public IHost AppHost;

    /// <summary>
    /// Default constructor
    /// </summary>
    public App()
    {
        AppHost = Host.CreateDefaultBuilder()
            .ConfigureServices(services =>
            {
                services.AddSingleton<IProject, Project>();
            })
            .Build();
...
    }
}
public partial class Analysis
{
    public void AnalysisMethod()
    {
        IProject project = ((App)Application.Current).AppHost.Services
            .GetRequiredService<IProject>();
    }
}

I'm trying to unit test AnalysisMethod but of course it fails because there is no Application.Current. How should I be coding/testing this, keeping in mind that I'd like to keep a singleton IProject created by DI?

Share Improve this question edited yesterday Steven 173k25 gold badges351 silver badges450 bronze badges asked yesterday R RommelR Rommel 94 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

The usual approach to DI is constructor injection, i.e. all classes should take all their dependencies as constructor parameters. All the classes are registered in the DI container, not just singletons, and as you ask the container for an object it will recursively resolve all the dependencies. So your Analysis class should look something like:

public partial class Analysis
{
    private IProject _project;
    public void AnalysisMethod(IProject project)
    {
        _project = project;
    }
}

This gives you several options when testing:

  1. Inject a Mock of the IProject
  2. Replace selected classes in the DI container with mocks. Typically classes that deal with database or file access or other things that are external to the application. This lets you test larger parts of the application at once.

Both approaches can be useful, depending on the circumstances, and how tightly the classes are coupled.

发布评论

评论列表(0)

  1. 暂无评论