< Summary

Information
Class: Elsa.Alterations.Endpoints.Alterations.Get.Response
Assembly: Elsa.Alterations
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Alterations/Endpoints/Alterations/Get/Response.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
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
get_Plan()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Alterations/Endpoints/Alterations/Get/Response.cs

#LineLine coverage
 1using Elsa.Alterations.Core.Entities;
 2
 3namespace Elsa.Alterations.Endpoints.Alterations.Get;
 4
 5/// <summary>
 6/// Represents a response to a request to get an alteration plan.
 7/// </summary>
 8/// <param name="Plan">The alteration plan.</param>
 9/// <param name="Jobs">The jobs created for the plan.</param>
 010public record Response(AlterationPlan Plan, ICollection<AlterationJob> Jobs);

Methods/Properties

get_Plan()