< Summary

Information
Class: Elsa.Api.Client.Shared.Models.WrappedInput
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/Models/WrappedInput.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 25
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_TypeName()100%210%
get_Expression()100%210%
get_MemoryReference()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/Models/WrappedInput.cs

#LineLine coverage
 1using Elsa.Api.Client.Resources.Scripting.Models;
 2
 3namespace Elsa.Api.Client.Shared.Models;
 4
 5/// <summary>
 6/// Represents an input value for an activity.
 7/// </summary>
 8public class WrappedInput
 9{
 10    /// <summary>
 11    /// Gets or sets the type of this input.
 12    /// </summary>
 013    public string TypeName { get; set; } = default!;
 14
 15    /// <summary>
 16    /// Gets or sets the expression of this input.
 17    /// </summary>
 018    public Expression Expression { get; set; } = default!;
 19
 20    /// <summary>
 21    /// Gets or sets the memory reference of this input.
 22    /// </summary>
 023    public MemoryReference MemoryReference { get; set; } = default!;
 24}
 25