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

loresoft / MediatR.CommandQuery / 11712653438

06 Nov 2024 10:05PM UTC coverage: 59.479%. Remained the same
11712653438

push

github

pwelter34
fix dependance issue

389 of 741 branches covered (52.5%)

Branch coverage included in aggregate %.

0 of 1 new or added line in 1 file covered. (0.0%)

1208 of 1944 relevant lines covered (62.14%)

19.58 hits per line

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

0.0
/src/MediatR.CommandQuery/Commands/EntityIdentifiersCommand.cs
1
using System.Diagnostics.CodeAnalysis;
2
using System.Security.Claims;
3

4
namespace MediatR.CommandQuery.Commands;
5

6
public abstract record EntityIdentifiersCommand<TKey, TResponse>
7
    : PrincipalCommandBase<TResponse>
8
{
9
    protected EntityIdentifiersCommand(ClaimsPrincipal? principal, [NotNull] IEnumerable<TKey> ids)
10
        : base(principal)
×
11
    {
12
        ArgumentNullException.ThrowIfNull(ids);
×
13

14
        Ids = ids.ToList();
×
15
    }
×
16

17
    public IReadOnlyCollection<TKey> Ids { get; }
×
18
}
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

© 2025 Coveralls, Inc