< Summary

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

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Management/Notifications/WorkflowInstancesDeleted.cs

#LineLine coverage
 1using Elsa.Mediator.Contracts;
 2
 3namespace Elsa.Workflows.Management.Notifications;
 4
 5/// <summary>
 6/// A notification that is sent when workflow instances are deleted.
 7/// </summary>
 8/// <param name="Ids">The IDs of the workflow instances.</param>
 139public record WorkflowInstancesDeleted(ICollection<string> Ids) : INotification;

Methods/Properties

get_Ids()