< Summary

Information
Class: Chronicis.Api.Services.ExternalLinks.ExternalLinkSuggestion
Assembly: Chronicis.Api
File(s): /home/runner/work/chronicis/chronicis/src/Chronicis.Api/Services/ExternalLinks/ExternalLinkSuggestion.cs
Line coverage
42%
Covered lines: 3
Uncovered lines: 4
Coverable lines: 7
Total lines: 12
Line coverage: 42.8%
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_Source()100%11100%
get_Id()100%11100%
get_Title()100%11100%
get_Subtitle()100%210%
get_Category()100%210%
get_Icon()100%210%
get_Href()100%210%

File(s)

/home/runner/work/chronicis/chronicis/src/Chronicis.Api/Services/ExternalLinks/ExternalLinkSuggestion.cs

#LineLine coverage
 1namespace Chronicis.Api.Services.ExternalLinks;
 2
 3public class ExternalLinkSuggestion
 4{
 25    public string Source { get; set; } = string.Empty;
 26    public string Id { get; set; } = string.Empty;
 27    public string Title { get; set; } = string.Empty;
 08    public string? Subtitle { get; set; }
 09    public string? Category { get; set; }
 010    public string? Icon { get; set; }
 011    public string? Href { get; set; }
 12}