< Summary

Information
Class: AsiBackbone.Samples.NcatAuditCompletionAdapter.NcatAuditCompletionHandoff
Assembly: AsiBackbone.Samples.NcatAuditCompletionAdapter
File(s): /home/runner/work/AsiBackbone/AsiBackbone/samples/NcatAuditCompletionAdapter/NcatAuditCompletionHandoff.cs
Line coverage
100%
Covered lines: 14
Uncovered lines: 0
Coverable lines: 14
Total lines: 24
Line coverage: 100%
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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_CompletionEntryId()100%11100%
get_PersistenceOutcome()100%11100%
get_CompletedUtc()100%11100%
get_OperationExecutionId()100%11100%
get_ExecutionAttemptId()100%11100%
get_DecisionAuditRecordId()100%11100%
get_CorrelationId()100%11100%
get_TraceId()100%11100%
get_MutationBatchId()100%11100%
get_AuditRecordCount()100%11100%
get_MutationManifestHash()100%11100%
get_MutationManifestAlgorithm()100%11100%
get_DeliveryAttempt()100%11100%

File(s)

/home/runner/work/AsiBackbone/AsiBackbone/samples/NcatAuditCompletionAdapter/NcatAuditCompletionHandoff.cs

#LineLine coverage
 1namespace AsiBackbone.Samples.NcatAuditCompletionAdapter;
 2
 3/// <summary>
 4/// Carries the minimized fields required to hand an NCAT mutation-audit completion into AsiBackbone.
 5/// </summary>
 6/// <remarks>
 7/// This source-neutral contract is intentionally limited to opaque identifiers, counts, hashes, and
 8/// completion state. It must not contain entity keys, original values, current values, request bodies,
 9/// secrets, or unrestricted exception details.
 10/// </remarks>
 2811public sealed record NcatAuditCompletionHandoff(
 7212    string CompletionEntryId,
 5613    string PersistenceOutcome,
 2014    DateTimeOffset CompletedUtc,
 5415    string? OperationExecutionId = null,
 2016    string? ExecutionAttemptId = null,
 7617    string? DecisionAuditRecordId = null,
 4818    string? CorrelationId = null,
 2019    string? TraceId = null,
 2820    string? MutationBatchId = null,
 5221    int AuditRecordCount = 0,
 3022    string? MutationManifestHash = null,
 3023    string? MutationManifestAlgorithm = null,
 5624    int DeliveryAttempt = 0);