< Summary - erichiller/mkmrk.Channels coverage

Information
Class: mkmrk.Channels.BroadcastChannelResponse
Assembly: mkmrk.Channels
File(s): /home/runner/work/mkmrk.Channels/mkmrk.Channels/src/mkmrk.Channels/BroadcastChannel/IBroadcastChannelResponse.cs
Tag: 161_8859726157
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 17
Line coverage: 0%
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

Coverage history

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%10%
get_Exception()100%10%
set_Exception(...)100%10%
.ctor(...)100%10%

File(s)

/home/runner/work/mkmrk.Channels/mkmrk.Channels/src/mkmrk.Channels/BroadcastChannel/IBroadcastChannelResponse.cs

#LineLine coverage
 1using JetBrains.Annotations;
 2
 3namespace mkmrk.Channels;
 4
 5/// <summary>
 6/// Response message container
 7/// </summary>
 8public interface IBroadcastChannelResponse {
 9    /// <summary>
 10    /// Set to a <see cref="System.Exception"/> if one has occurred, else leave <c>null</c>
 11    /// </summary>
 12    public System.Exception? Exception { get; init; }
 13}
 14
 15/// <inheritdoc />
 16[UsedImplicitly]
 017public record BroadcastChannelResponse( System.Exception? Exception) : IBroadcastChannelResponse;