< Summary - Syki

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

File(s)

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

#LineLine coverage
 1namespace Syki.Back.Features.Identity.CreateSsoConfiguration;
 2
 3public class InvalidSsoAllowedDomains : SykiError
 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 : SykiError
 11{
 012    public static readonly SsoDomainAlreadyConfigured I = new();
 013    public override string Code { get; set; } = nameof(SsoDomainAlreadyConfigured);
 014    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()