< Summary

Information
Class: GistBackend.Types.RssEntry
Assembly: GistBackend
File(s): /home/runner/work/the-gist-of-it-sec/the-gist-of-it-sec/backend/GistBackend/Types/RssEntry.cs
Line coverage
100%
Covered lines: 10
Uncovered lines: 0
Coverable lines: 10
Total lines: 12
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
.ctor(...)100%11100%
get_Reference()100%11100%
get_FeedId()100%11100%
get_Author()100%11100%
get_Title()100%11100%
get_Published()100%11100%
get_Updated()100%11100%
get_Url()100%11100%
get_Categories()100%11100%

File(s)

/home/runner/work/the-gist-of-it-sec/the-gist-of-it-sec/backend/GistBackend/Types/RssEntry.cs

#LineLine coverage
 1namespace GistBackend.Types;
 2
 3643public record RssEntry(
 6644    string Reference,
 2775    int FeedId,
 4786    string Author,
 2807    string Title,
 3368    DateTime Published,
 3919    DateTime Updated,
 55010    Uri Url,
 16611    IEnumerable<string> Categories
 36412);