• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / durabletask-extensions / 5836038789

pending completion
5836038789

push

github

lucaslorentz
Add husky and apply some code fixes

2502 of 2502 new or added lines in 91 files covered. (100.0%)

2295 of 2792 relevant lines covered (82.2%)

143.82 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

87.5
/src/LLL.DurableTask.EFCore/Entities/OrchestrationMessage.cs
1
using System;
2

3
namespace LLL.DurableTask.EFCore.Entities;
4

5
public class OrchestrationMessage
6
{
7
    public Guid Id { get; set; }
363✔
8

9
    public string InstanceId { get; set; }
363✔
10
    // This relationship ensures messages are deleted when instance is deleted
11
    public Instance Instance { get; set; }
×
12

13
    public string ExecutionId { get; set; }
907✔
14

15
    public string Queue { get; set; }
363✔
16

17
    public DateTime AvailableAt { get; set; }
363✔
18

19
    // Used to order messages fired at the same moment
20
    public int SequenceNumber { get; set; }
363✔
21

22
    public string Message { get; set; }
637✔
23
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc