< Summary

Information
Class: Elsa.Workflows.Runtime.Notifications.IndexedWorkflowBookmarks
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Notifications/IndexedWorkflowBookmarks.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 16
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
.ctor(...)100%11100%
get_WorkflowExecutionContext()100%11100%
get_AddedBookmarks()100%11100%
get_RemovedBookmarks()100%11100%
get_UnchangedBookmarks()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Notifications/IndexedWorkflowBookmarks.cs

#LineLine coverage
 1using Elsa.Workflows.Models;
 2
 3namespace Elsa.Workflows.Runtime.Notifications;
 4
 5/// <summary>
 6/// Contains the bookmarks that were added, removed, or unchanged.
 7/// </summary>
 8/// <param name="WorkflowExecutionContext">The workflow execution context.</param>
 9/// <param name="AddedBookmarks">The bookmarks that were added.</param>
 10/// <param name="RemovedBookmarks">The bookmarks that were removed.</param>
 11/// <param name="UnchangedBookmarks">The bookmarks that were unchanged.</param>
 46612public record IndexedWorkflowBookmarks(
 78313    WorkflowExecutionContext WorkflowExecutionContext,
 78314    ICollection<Bookmark> AddedBookmarks,
 124915    ICollection<Bookmark> RemovedBookmarks,
 46616    ICollection<Bookmark> UnchangedBookmarks);