< Summary

Information
Class: Elsa.Api.Client.Resources.Tests.TestActivityResponse
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Tests/TestActivityResponse.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
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_ActivityState()100%210%
get_Payload()100%210%
get_Outputs()100%210%
get_Exception()100%210%
get_Status()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Tests/TestActivityResponse.cs

#LineLine coverage
 1using Elsa.Api.Client.Resources.WorkflowInstances.Models;
 2using Elsa.Api.Client.Shared.Models;
 3
 4namespace Elsa.Api.Client.Resources.Tests;
 5
 6public class TestActivityResponse
 7{
 08    public IDictionary<string, object?> ActivityState { get; set; } = new Dictionary<string, object?>();
 09    public IDictionary<string, object>? Payload { get; set; }
 010    public IDictionary<string, object?>? Outputs { get; set; }
 011    public ExceptionState? Exception { get; set; }
 012    public ActivityStatus Status { get; set; }
 13}