< Summary - Estud

Information
Class: Estud.Back.Features.Identity.CreateSsoConfiguration.SsoDomainAlreadyConfigured
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Features/Identity/CreateSsoConfiguration/CreateSsoConfigurationErrors.cs
Tag: 114_29044117136
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 15
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
.cctor()100%11100%
get_Code()100%11100%
get_Message()100%11100%

File(s)

/home/runner/work/syki/syki/Back/Features/Identity/CreateSsoConfiguration/CreateSsoConfigurationErrors.cs

#LineLine coverage
 1namespace Estud.Back.Features.Identity.CreateSsoConfiguration;
 2
 3public class InvalidSsoAllowedDomains : EstudError
 4{
 5    public static readonly InvalidSsoAllowedDomains I = new();
 6    public override string Code { get; set; } = nameof(InvalidSsoAllowedDomains);
 7    public override string Message { get; set; } = "Lista de domínios inválida.";
 8}
 9
 10public class SsoDomainAlreadyConfigured : EstudError
 11{
 212    public static readonly SsoDomainAlreadyConfigured I = new();
 613    public override string Code { get; set; } = nameof(SsoDomainAlreadyConfigured);
 614    public override string Message { get; set; } = "Um ou mais domínios já estão configurados em outro SSO.";
 15}

Methods/Properties

.cctor()
get_Code()
get_Message()