< Summary

Information
Class: Syki.Back.Configs.EfCoreConfigs
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Configs/EfCoreConfigs.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 11
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
AddEfCoreConfigs(...)100%11100%

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Configs;
 2
 3public static class EfCoreConfigs
 4{
 5    public static void AddEfCoreConfigs(this IServiceCollection services)
 6    {
 27        AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
 8
 29        services.AddDbContext<SykiDbContext>();
 210    }
 11}