< 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{
 43585    public string Id { get; set; } = null!;
 43586    public string? TenantId { get; set; }
 43587    public string WorkflowInstanceId { get; set; } = null!;
 43588    public string ActivityId { get; set; } = null!;
 43589    public string ActivityNodeId { get; set; } = null!;
 435810    public string ActivityType { get; set; } = null!;
 435811    public int ActivityTypeVersion { get; set; }
 435812    public string? ActivityName { get; set; }
 435813    public DateTimeOffset StartedAt { get; set; }
 435814    public bool HasBookmarks { get; set; }
 435815    public ActivityStatus Status { get; set; }
 435816    public int AggregateFaultCount { get; set; }
 435817    public DateTimeOffset? CompletedAt { get; set; }
 709118    public string? SerializedActivityState { get; set; }
 709119    public string? SerializedOutputs { get; set; }
 709120    public string? SerializedProperties { get; set; }
 709121    public string? SerializedPayload { get; set; }
 709122    public string? SerializedMetadata { get; set; }
 709123    public string? SerializedException { get; set; }
 709124    public string? SerializedActivityStateCompressionAlgorithm { get; set; }
 25}