< Summary

Information
Class: FLP.Core.Context.Shared.BasicModel<T>
Assembly: FLP.Core
File(s): /home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Core/Context/Shared/BasicModel.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 10
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
get_Id()100%11100%
get_CreatedAt()100%11100%

File(s)

/home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Core/Context/Shared/BasicModel.cs

#LineLine coverage
 1using FLP.Core.Interfaces.Shared;
 2
 3namespace FLP.Core.Context.Shared;
 4
 5public abstract class BasicModel<T> : IAuditable
 6    where T : IEquatable<T>
 7{
 338    public T? Id { get; set; }
 349    public virtual DateTime CreatedAt { get; set; } = DateTime.UtcNow;
 10}

Methods/Properties

get_Id()
get_CreatedAt()