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

loresoft / FluentCommand / 23280340529

19 Mar 2026 04:46AM UTC coverage: 57.402%. Remained the same
23280340529

push

github

pwelter34
nullability tests

1405 of 3071 branches covered (45.75%)

Branch coverage included in aggregate %.

41 of 83 new or added lines in 17 files covered. (49.4%)

4291 of 6852 relevant lines covered (62.62%)

330.75 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/test/FluentCommand.Entities/Audit.cs
1
using System.ComponentModel.DataAnnotations;
2
using System.ComponentModel.DataAnnotations.Schema;
3

4
using FluentCommand.Handlers;
5

6
namespace FluentCommand.Entities;
7

8
[Table(nameof(Audit))]
9
public class Audit
10
{
11
    public int Id { get; set; }
×
12
    public DateTime Date { get; set; }
×
13
    public int? UserId { get; set; }
×
14
    public int? TaskId { get; set; }
×
NEW
15
    public string? Content { get; set; }
×
NEW
16
    public string? Username { get; set; }
×
17
    public DateTimeOffset Created { get; set; }
×
NEW
18
    public string? CreatedBy { get; set; }
×
19
    public DateTimeOffset Updated { get; set; }
×
NEW
20
    public string? UpdatedBy { get; set; }
×
21

22
    [ConcurrencyCheck]
23
    [DatabaseGenerated(DatabaseGeneratedOption.Computed)]
24
    [DataFieldConverter(typeof(ConcurrencyTokenHandler))]
25
    public ConcurrencyToken RowVersion { get; set; }
×
26

27
    [NotMapped]
NEW
28
    public virtual Task? Task { get; set; }
×
29
    [NotMapped]
NEW
30
    public virtual User? User { get; set; }
×
31
}
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

© 2026 Coveralls, Inc