< Summary

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

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/WorkflowMetadata.cs

#LineLine coverage
 1namespace Elsa.Workflows.Models;
 2
 3/// <summary>
 4/// Represents metadata about a workflow.
 5/// </summary>
 6/// <param name="Name">The name of the workflow.</param>
 7/// <param name="Description">The description of the workflow.</param>
 8/// <param name="CreatedAt">The date and time the workflow was created.</param>
 9/// <param name="ToolVersion">The version of the tool that created the workflow.</param>
 747410public record WorkflowMetadata(string? Name = default, string? Description = default, DateTimeOffset CreatedAt = default
 11{
 12}

Methods/Properties

get_Name()