< Summary

Information
Class: Elsa.Workflows.Runtime.ActivityExecutionRecordSnapshot
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/ActivityExecutionRecordSnapshot.cs
Line coverage
100%
Covered lines: 20
Uncovered lines: 0
Coverable lines: 20
Total lines: 25
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
get_Id()100%11100%
get_TenantId()100%11100%
get_WorkflowInstanceId()100%11100%
get_ActivityId()100%11100%
get_ActivityNodeId()100%11100%
get_ActivityType()100%11100%
get_ActivityTypeVersion()100%11100%
get_ActivityName()100%11100%
get_StartedAt()100%11100%
get_HasBookmarks()100%11100%
get_Status()100%11100%
get_AggregateFaultCount()100%11100%
get_CompletedAt()100%11100%
get_SerializedActivityState()100%11100%
get_SerializedOutputs()100%11100%
get_SerializedProperties()100%11100%
get_SerializedPayload()100%11100%
get_SerializedMetadata()100%11100%
get_SerializedException()100%11100%
get_SerializedActivityStateCompressionAlgorithm()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/ActivityExecutionRecordSnapshot.cs

#LineLine coverage
 1namespace Elsa.Workflows.Runtime;
 2
 3public class ActivityExecutionRecordSnapshot
 4{
 42495    public string Id { get; set; } = null!;
 42496    public string? TenantId { get; set; }
 42497    public string WorkflowInstanceId { get; set; } = null!;
 42498    public string ActivityId { get; set; } = null!;
 42499    public string ActivityNodeId { get; set; } = null!;
 424910    public string ActivityType { get; set; } = null!;
 424911    public int ActivityTypeVersion { get; set; }
 424912    public string? ActivityName { get; set; }
 424913    public DateTimeOffset StartedAt { get; set; }
 424914    public bool HasBookmarks { get; set; }
 424915    public ActivityStatus Status { get; set; }
 424916    public int AggregateFaultCount { get; set; }
 424917    public DateTimeOffset? CompletedAt { get; set; }
 700718    public string? SerializedActivityState { get; set; }
 700719    public string? SerializedOutputs { get; set; }
 700720    public string? SerializedProperties { get; set; }
 700721    public string? SerializedPayload { get; set; }
 700722    public string? SerializedMetadata { get; set; }
 700723    public string? SerializedException { get; set; }
 700724    public string? SerializedActivityStateCompressionAlgorithm { get; set; }
 25}