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

loresoft / FluentCommand / 8850661434

26 Apr 2024 03:30PM UTC coverage: 54.48% (+2.6%) from 51.881%
8850661434

push

github

pwelter34
update debug settings

1152 of 2717 branches covered (42.4%)

Branch coverage included in aggregate %.

3682 of 6156 relevant lines covered (59.81%)

701.76 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;
2
using System.ComponentModel.DataAnnotations;
3
using System.ComponentModel.DataAnnotations.Schema;
4

5
using FluentCommand.Handlers;
6

7
namespace FluentCommand.Entities;
8

9
[Table(nameof(StatusConstructor))]
10
public class StatusConstructor
11
{
12
    public StatusConstructor(
18✔
13
        int id,
18✔
14
        string name,
18✔
15
        string description,
18✔
16
        bool isActive,
18✔
17
        int displayOrder,
18✔
18
        DateTimeOffset created,
18✔
19
        string createdBy,
18✔
20
        DateTimeOffset updated,
18✔
21
        string updatedBy,
18✔
22
        ConcurrencyToken rowVersion)
18✔
23
    {
24
        Id = id;
18✔
25
        Name = name;
18✔
26
        Description = description;
18✔
27
        DisplayOrder = displayOrder;
18✔
28
        IsActive = isActive;
18✔
29
        Created = created;
18✔
30
        CreatedBy = createdBy;
18✔
31
        Updated = updated;
18✔
32
        UpdatedBy = updatedBy;
18✔
33
        RowVersion = rowVersion;
18✔
34
    }
18✔
35

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

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