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

loresoft / MediatR.CommandQuery / 9149293065

19 May 2024 05:15PM CUT coverage: 57.741% (+0.5%) from 57.227%
9149293065

push

github

pwelter34
add null support to query

348 of 708 branches covered (49.15%)

Branch coverage included in aggregate %.

26 of 26 new or added lines in 2 files covered. (100.0%)

1032 of 1682 relevant lines covered (61.36%)

19.52 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.Principal;
3

4
namespace MediatR.CommandQuery.Commands;
5

6
public abstract class EntityIdentifiersCommand<TKey, TResponse>
7
    : PrincipalCommandBase<TResponse>
8
{
9
    protected EntityIdentifiersCommand(IPrincipal? principal, [NotNull] IEnumerable<TKey> ids)
10
        : base(principal)
×
11
    {
12
        if (ids is null)
×
13
            throw new ArgumentNullException(nameof(ids));
×
14

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

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