< Summary

Information
Class: MRA.DependencyInjection.DependencyInjectionConfig
Assembly: MRA.DependencyInjection
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.DependencyInjection\DependencyInjectionConfig.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 18
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
AddDependencyInjectionServices(...)100%11100%

File(s)

D:\a\MiguelRomerART\MiguelRomerART\MRA.DependencyInjection\DependencyInjectionConfig.cs

#LineLine coverage
 1using Microsoft.Extensions.DependencyInjection;
 2using MRA.DependencyInjection.Startup;
 3using Microsoft.Extensions.Configuration;
 4
 5namespace MRA.DependencyInjection;
 6
 7public static class DependencyInjectionConfig
 8{
 9    public static IServiceCollection AddDependencyInjectionServices(this IServiceCollection services, IConfiguration con
 10    {
 111        services.AddCustomConfiguration();
 12
 113        services.AddCustomInfrastructure();
 114        services.AddCustomServices();
 15
 116        return services;
 17    }
 18}