< Summary

Information
Class: ProjectTemplate.Infrastructure.Data.Auditing.ApplicationMutationAuditReceipt
Assembly: ProjectTemplate.Infrastructure
File(s): /home/runner/work/NetCoreApplicationTemplate/NetCoreApplicationTemplate/src/ProjectTemplate.Infrastructure/Data/Auditing/ApplicationMutationAuditReceipt.cs
Line coverage
100%
Covered lines: 13
Uncovered lines: 0
Coverable lines: 13
Total lines: 18
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_MutationBatchId()100%11100%
get_AuditRecordCount()100%11100%
get_PersistenceOutcome()100%11100%
get_CompletedUtc()100%11100%
get_MutationManifestHash()100%11100%
get_MutationManifestAlgorithm()100%11100%
get_MutationManifestSchemaVersion()100%11100%
get_OperationExecutionId()100%11100%
get_ExecutionAttemptId()100%11100%
get_DecisionAuditRecordId()100%11100%
get_CorrelationId()100%11100%
get_TraceId()100%11100%

File(s)

/home/runner/work/NetCoreApplicationTemplate/NetCoreApplicationTemplate/src/ProjectTemplate.Infrastructure/Data/Auditing/ApplicationMutationAuditReceipt.cs

#LineLine coverage
 1namespace ProjectTemplate.Infrastructure.Data.Auditing;
 2
 3/// <summary>
 4/// Summarizes a completed application mutation audit batch without exposing audited entity values.
 5/// </summary>
 726public sealed record ApplicationMutationAuditReceipt(
 647    string MutationBatchId,
 328    int AuditRecordCount,
 149    string PersistenceOutcome,
 1210    DateTimeOffset CompletedUtc,
 3211    string MutationManifestHash,
 3412    string MutationManifestAlgorithm,
 1413    string MutationManifestSchemaVersion,
 1414    string? OperationExecutionId = null,
 1415    string? ExecutionAttemptId = null,
 1416    string? DecisionAuditRecordId = null,
 1417    string? CorrelationId = null,
 8418    string? TraceId = null);