< Summary - Syki

Information
Class: Syki.Shared.GetWebhookSubscriptionOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Academic/GetWebhookSubscription/GetWebhookSubscriptionOut.cs
Tag: 21_17346963026
Line coverage
72%
Covered lines: 8
Uncovered lines: 3
Coverable lines: 11
Total lines: 19
Line coverage: 72.7%
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
get_Id()100%11100%
get_Name()100%11100%
get_Url()100%11100%
get_AuthenticationType()100%11100%
get_CreatedAt()100%11100%
get_EventsCount()100%11100%
get_CallsCount()100%11100%
get_Calls()100%11100%
GetExamples()100%210%

File(s)

/home/runner/work/syki/syki/Shared/Features/Academic/GetWebhookSubscription/GetWebhookSubscriptionOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class GetWebhookSubscriptionOut
 4{
 65    public Guid Id { get; set; }
 86    public string Name { get; set; }
 87    public string Url { get; set; }
 88    public WebhookAuthenticationType AuthenticationType { get; set; }
 69    public DateTime CreatedAt { get; set; }
 810    public int EventsCount { get; set; }
 811    public int CallsCount { get; set; }
 12
 613    public List<GetWebhookCallOut> Calls { get; set; }
 14
 15    public static IEnumerable<(string, GetWebhookSubscriptionOut)> GetExamples() =>
 016    [
 017        ("Exemplo", new() { }),
 018    ];
 19}