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

loresoft / MediatR.CommandQuery / 9307610999

30 May 2024 06:43PM CUT coverage: 57.741%. Remained the same
9307610999

Pull #513

github

web-flow
Merge e90664f48 into 7184530a4
Pull Request #513: Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0

348 of 708 branches covered (49.15%)

Branch coverage included in aggregate %.

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