< Summary

Information
Class: Chronicis.Client.Services.DocumentDownloadResult
Assembly: Chronicis.Client
File(s): /home/runner/work/chronicis/chronicis/src/Chronicis.Client/Services/DocumentDownloadResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 10
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
.ctor(...)100%210%
get_DownloadUrl()100%210%
get_FileName()100%210%
get_ContentType()100%210%
get_FileSizeBytes()100%210%

File(s)

/home/runner/work/chronicis/chronicis/src/Chronicis.Client/Services/DocumentDownloadResult.cs

#LineLine coverage
 1namespace Chronicis.Client.Services;
 2
 3/// <summary>
 4/// Result containing a SAS URL for downloading a document directly from blob storage.
 5/// </summary>
 06public sealed record DocumentDownloadResult(
 07    string DownloadUrl,
 08    string FileName,
 09    string ContentType,
 010    long FileSizeBytes);