< Summary - Syki

Information
Class: Syki.Back.Configs.SettingsConfigs
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Configs/SettingsConfigs.cs
Tag: 4_16869239191
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 13
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
AddSettingsConfigs(...)100%11100%

File(s)

/home/runner/work/syki/syki/Back/Configs/SettingsConfigs.cs

#LineLine coverage
 1namespace Syki.Back.Configs;
 2
 3public static class SettingsConfigs
 4{
 5    public static void AddSettingsConfigs(this WebApplicationBuilder builder)
 6    {
 47        builder.Services.AddSingleton<AuthSettings>();
 48        builder.Services.AddSingleton<DatabaseSettings>();
 49        builder.Services.AddSingleton<FeaturesSettings>();
 410        builder.Services.AddSingleton<RateLimiterSettings>();
 411        builder.Services.AddSingleton<AzureBlobStorageSettings>();
 412    }
 13}