< Summary

Information
Class: Elsa.Api.Client.Resources.Resilience.Models.RetryAttemptRecord
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Resilience/Models/RetryAttempt.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 13
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
get_ActivityInstanceId()100%210%
get_ActivityId()100%210%
get_WorkflowInstanceId()100%210%
get_AttemptNumber()100%210%
get_RetryDelay()100%210%
get_Details()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Resilience/Models/RetryAttempt.cs

#LineLine coverage
 1using Elsa.Api.Client.Shared.Models;
 2
 3namespace Elsa.Api.Client.Resources.Resilience.Models;
 4
 5public class RetryAttemptRecord : Entity
 6{
 07    public string ActivityInstanceId { get; set; } = null!;
 08    public string ActivityId { get; set; } = null!;
 09    public string WorkflowInstanceId { get; set; } = null!;
 010    public int AttemptNumber { get; set; }
 011    public TimeSpan RetryDelay { get; set; }
 012    public IDictionary<string, string?> Details { get; set; } = null!;
 13}