< Summary - Estud

Information
Class: Program
Assembly: Mocks
File(s): /home/runner/work/syki/syki/Mocks/Program.cs
Tag: 114_29044117136
Line coverage
100%
Covered lines: 9
Uncovered lines: 0
Coverable lines: 9
Total lines: 19
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
<Main>$(...)100%11100%

File(s)

/home/runner/work/syki/syki/Mocks/Program.cs

#LineLine coverage
 1using Estud.Mocks.Configs;
 2
 23var builder = WebApplication.CreateBuilder(args);
 4
 25builder.AddHttpConfigs();
 26builder.AddEntityFrameworkConfigs();
 7
 28var app = builder.Build();
 9
 210app.UseRouting();
 11
 212app.UseControllers();
 13
 214app.MapGet("/", () => Results.Ok(new { Status = "Healthy" }));
 215app.MapGet("/health", () => Results.Ok(new { Status = "Healthy" }));
 16
 217app.Run();
 18
 19public partial class Program { }

Methods/Properties

<Main>$(System.String[])