< Summary

Information
Class: Elsa.Workflows.Runtime.MaterializedWorkflow
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/MaterializedWorkflow.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 13
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_Workflow()100%11100%

File(s)

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

#LineLine coverage
 1using Elsa.Workflows.Activities;
 2
 3namespace Elsa.Workflows.Runtime;
 4
 5/// <summary>
 6/// Represents a workflow definition and its workflow.
 7/// </summary>
 8/// <param name="Workflow">The workflow materialized from its workflow definition.</param>
 9/// <param name="ProviderName">The name of the provider that provided the workflow definition.</param>
 10/// <param name="MaterializerName">The name of the materializer that materialized the workflow.</param>
 11/// <param name="MaterializerContext">The context of the materializer that materialized the workflow.</param>
 12/// <param name="OriginalSource">The original source representation (JSON, ElsaScript, YAML, etc.). When present, enable
 591313public record MaterializedWorkflow(Workflow Workflow, string ProviderName, string MaterializerName, object? Materializer

Methods/Properties

get_Workflow()