• 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

68.75
/test/FluentCommand.Entities/StatusConstructor.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(StatusConstructor))]
9
public class StatusConstructor
10
{
11
    public StatusConstructor(
6✔
12
        int id,
6✔
13
        string name,
6✔
14
        string? description,
6✔
15
        bool isActive,
6✔
16
        int displayOrder,
6✔
17
        DateTimeOffset created,
6✔
18
        string? createdBy,
6✔
19
        DateTimeOffset updated,
6✔
20
        string? updatedBy,
6✔
21
        ConcurrencyToken rowVersion)
6✔
22
    {
23
        Id = id;
6✔
24
        Name = name;
6✔
25
        Description = description;
6✔
26
        DisplayOrder = displayOrder;
6✔
27
        IsActive = isActive;
6✔
28
        Created = created;
6✔
29
        CreatedBy = createdBy;
6✔
30
        Updated = updated;
6✔
31
        UpdatedBy = updatedBy;
6✔
32
        RowVersion = rowVersion;
6✔
33
    }
6✔
34

35
    public int Id { get; }
×
36
    public string Name { get; }
×
NEW
37
    public string? Description { get; }
×
38
    public int DisplayOrder { get; }
×
39
    public bool IsActive { get; }
×
40
    public DateTimeOffset Created { get; }
×
NEW
41
    public string? CreatedBy { get; }
×
42
    public DateTimeOffset Updated { get; }
×
NEW
43
    public string? UpdatedBy { get; }
×
44

45
    [ConcurrencyCheck]
46
    [DatabaseGenerated(DatabaseGeneratedOption.Computed)]
47
    [DataFieldConverter(typeof(ConcurrencyTokenHandler))]
48
    public ConcurrencyToken RowVersion { get; }
×
49
}
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